JSP(对象专用语句)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-20 18:33 点击:次
1,whit
[html]
<html>
<script language="javascript">
var current_time = new Date();
/*
用with 不需要为每次的方法调用指定对象
*/
whit(current_time)
{
var strDate=getYear()+"-";
strDate +=getMonth()+"-";
strDate +=getDate();
alert(DatStr);
}
</script>
</html>
2,for ... in: 遍历
[html]
<html>
<script language="javascript">
function Person()
{
this.name="zxx";
this.age=12;
this.height=176;
}
var p1 = new Person();
var prop,str="";
for(prop in p1)
{
str +=prop + " ";
}
alert(str);
</script>
</html>
相关新闻>>
- 发表评论
-
- 最新评论 更多>>