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

javascript中with语句应用

时间:2014-07-06 22:26:16      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   cti   javascript   

语法格式:
  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="Changed" onclick="test()"/> 
    <input type="button" value="withChanged" onclick="testWith()"/> 
</body>
</html>

 

javascript中with语句应用,布布扣,bubuko.com

javascript中with语句应用

标签:style   blog   java   color   cti   javascript   

原文地址:http://www.cnblogs.com/volare/p/3824466.html

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