JQuery-方法

一、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>

 

posted @ 2017-10-25 11:36  scwyfy  阅读(150)  评论(0编辑  收藏  举报