码迷,mamicode.com
首页 > Web开发 > 详细

开篇一文 php 和 js 默认参数

时间:2014-10-06 12:32:10      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   sp   div   c   on   cti   

啥话不说。。。

 

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>

开篇一文 php 和 js 默认参数

标签:style   blog   color   io   sp   div   c   on   cti   

原文地址:http://www.cnblogs.com/yyanga/p/4007974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!