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

Information about jQuery setting properties

jQuery sets attribute information value

$().attr(attribute name, value); //Set attribute information

<!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(){
                $("#in").attr('value','大家好');
            }
        </script>
    </head>
    <body>
        <input type="text" value="你好" id="in"/>
        <input type="button" value="設(shè)置屬性" 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(){ $("#in").attr('value','大家好'); } </script> </head> <body> <input type="text" value="你好" id="in"/> <input type="button" value="設(shè)置屬性" onclick="get()"> </body> </html>
submitReset Code