首页 > 代码库 > 开篇一文 php 和 js 默认参数

开篇一文 php 和 js 默认参数

啥话不说。。。

 

1 <?php2 function setheight($height=50){3     echo "这个高度是 $height <br />";4 }5 setheight(100);6 setheight();7 ?>

 

 

<script>function setwidth(width){    width = width||500;    alert(width)}setwidth(200);setwidth(152);setwidth();</script>

开篇一文 php 和 js 默认参数