欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery 根据name属性获取对象(=document.getElementByName("") )

程序员文章站 2022-06-09 18:58:54
...
    <html>  
    <head>  
    <script type="text/javascript" src="/jquery/jquery.js"></script>  
    <script type="text/javascript">  
    $(document).ready(function(){  
      $("input").focus(function(){  
        $("input").css("background-color","#FFFFCC");  
      });  
      $("input").blur(function(){  
        $("input").css("background-color","#D6D6FF");  
    var dd=$(":input[name='login']").val();  
    $(":input[name='login22']").val(dd);  
      // $("#txt").attr("value",'11');//填充内容  
      });  
    });  
      
    //$(":input[name='login']").val()  
    </script>  
    </head>  
    <body>  
    Enter your name: <input type="text" /><br>  
    <input type="text" name="login" value="vvvvv"/><br>  
    <input type="text" name="login22" value=""/><br>  
    请在上面的输入域中点击,使其获得焦点,然后在输入域外面点击,使其失去焦点。
  
    </body>  
    </html>