zoukankan      html  css  js  c++  java
  • 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="Changed" onclick="test()"/> 
        <input type="button" value="withChanged" onclick="testWith()"/> 
    </body>
    </html>
    Don’t hurry say have no choice, perhaps, next intersection will meet hope.
  • 相关阅读:
    CSS实现返回网页顶部
    jQuery实现小火箭动态返回顶部代码
    Linux目录结构介绍
    Linux常用命令及技巧
    Linux文件系统
    Linux特性
    numpy中基础函数
    restful规范
    堆栈
    三次握手与四次挥手
  • 原文地址:https://www.cnblogs.com/volare/p/3824466.html
Copyright © 2011-2022 走看看