
通过简单实例了解Javascript中With语句用法。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>With语句(类似于VB中的)</title>
<script type="text/javascript">
function Student(name, age) {
this.name = name;
this.age = age;
}
var stu = new Student('罗纳尔多', 36);
with (stu) {
//With语句(类似于VB中的),用于简化代码
alert("Name:" + name + ",Age:" + age);
}
</script>
</head>
<body>
</body>
</html>运行看下效果吧。






网友评论文明上网理性发言 已有0人参与
发表评论: