首页 > 代码库 > javascript中with语句应用
javascript中with语句应用
语法格式:
with(obj){}
obj指明了语句组中对象缺省时的参考对象,就是代表该语句块中的默认作用域为obj。
<html><head> <title></title> <meta charset="utf-8"/> <script type="text/javascript"> function test(){ var obj=document.getElementById("test"); obj.className="red"; obj.value="not use with"; } function testWith(){ var a=document.getElementById("test"); with(a){ value="using with"; className="blue"; } } </script> <style type="text/css"> .red{background:red;color:#ffffff} .blue{background:blue;color:yellow} </style> </head><body> <input id="test" type="text" name="test" value=""/> <input type="button" value="http://www.mamicode.com/Changed" onclick="test()"/> <input type="button" value="http://www.mamicode.com/withChanged" onclick="testWith()"/> </body></html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。