国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jQuery sets multiple attribute information values

jQuery sets multiple attribute information values

##$().attr(json object); //Set information values ??for multiple attributes at the same time. The key-value pair of the json object is the name and value

<!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>


Continuing Learning
||
<!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>
submitReset Code