jQuery设置多个属性信息值

jQuery设置多个属性信息值

$().attr(json对象);    //同时为多个属性设置信息值,json对象的键值对就是名称和值

<!DOCTYPE html>
<html>
    <head>
        <title>php.cn</title>
        <meta charset="utf-8" />
        <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
        <script>
            function get(){
            var duo = {value:'设置了多个属性',type:'textarea'}
            $("#in").attr(duo);
            }
        </script>
    </head>
    <body>
        <input type="text" value="你好" id="in"/>
        <input type="button" value="设置属性" onclick="get()">
    </body>
</html>


继续学习
||
<!DOCTYPE html> <html> <head> <title>php.cn</title> <meta charset="utf-8" /> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script> function get(){ var duo = {value:'设置了多个属性',type:'textarea'} $("#in").attr(duo); } </script> </head> <body> <input type="text" value="你好" id="in"/> <input type="button" value="设置属性" onclick="get()"> </body> </html>
提交重置代码