码迷,mamicode.com
首页 > 编程语言 > 详细

javascript—with用法

时间:2017-03-27 12:12:19      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:javascript with

function Lakers() {  

       this.name = "kobe bryant";  

       this.age = "28";  

       this.gender = "boy";  

}  

var people=new Lakers();  

with(people)  

{  

       var str = "姓名: " + name + "<br>";  

       str += "年龄:" + age + "<br>";  

       str += "性别:" + gender;  

       document.write(str);  


javascript—with用法

标签:javascript with

原文地址:http://codejson.blog.51cto.com/10074045/1910552

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