1. 程式人生 > >JQuery-方法

JQuery-方法

rip val bsp 文本 java col htm html round

一、val()、text()、html()方法
<script type="text/javascript"> $(function(){ $(msg).val():取值 $(msg).val("hello"):設置值 //val()主要針對於表單控件(value屬性) $(showMsg).text():取值 $(showMsg).text("hello"):設置值 //text()只能識別文本內容
$(showMsg).html():取值 $(showMsg).html("<h1>hello</h1>"):設置值 //html()可以識別html代碼 }); </script>

JQuery-方法