jQuery ?? ? ???(3)
jQuery?? .val() ???? ???, ?? ??, ??, ??? ?? ? ?? ??? ?? ???? ? ?????.
val() ???
val()?? ????? ???, ???? ?? ???? ? ?? ??? ?? ?? ?????.
val( value ), ???? ?? ???? ? ??? ?? ?????.
val(??), ??? ?? ???? ? ???? ??
??:
.val()? ?? ?? ??? ?????. ?? ??? ???? ??? null? ?????.
val() ???? ?? ??? ?????. Value ??? ??
val ???? ???? ??? ?? ???? ?? ???????
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script> </head> <body> <select id="see"> <option>php 中文網(wǎng)</option> <option>php.cn</option> <option>小豬 CMS</option> </select> <p></p> <script type="text/javascript"> $("p").text($('#see').val()); </script> </body> </html>
?? ?? ???? ??? ???????
??? ??? ????.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script> </head> <body> <input type="text" value="php 中文網(wǎng)" id="ipt"> <script type="text/javascript"> $("#ipt").val("php.cn"); </script> </body> </html>
html (), text() ? val() ??? ??:
.html(), .text() ? .val()? ?? ??? ??? ??? ?? ? ?????. .html()? ?????. ??? html ???(html ?? ??)? ???? text()? ???? ?? ??? ???? ??? ?? ??? ???? ??, val()? ???? ??? "?" ?? ????. ??. html() ? text() ???? ?? ??? ??? ? ??? val()? ?? ???? ??? ? ????. ?? html() ???? ?? ??? ???? ?? ? ?? ??? ????. val() ???? .html()? ?????. ?? ??? ??? ?? ? ?? ?? ??? "?" ?? ?? ? ??? .text()? ?? ????. ) ?? ??? ???? ??? ?? ??? ??? ??? ????.
html(htmlString), text(textString) ? val(value)? ?? ??? ??? ??? ??? ? ?????. ? ?? ??? ??? ?? ??? ???? ??? ?? ??? ??? ????. ??.
html(), text() ? val()? ?? ?? ??? ?? ?? ???? ?? ??? ??? ???? ??? ? ????.