开篇一文 php 和 js 默认参数

啥话不说。。。

 

1 <?php
2 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>

posted @ 2014-10-06 10:15  星宿老仙  阅读(103)  评论(0编辑  收藏  举报