jQuery中this与$(this)的区别实例

Posted dreamflower

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery中this与$(this)的区别实例相关的知识,希望对你有一定的参考价值。

 1 <!doctype html>
 2 <html>
 3 <head>
 4 <meta charset="utf-8">
 5 <title>this</title>
 6 <script type="text/javascript" src="js/jquery.js"></script>
 7 </head>
 8 <body>
 9 <input type="text" id="dd" value="gg"/>
10 <script>
11    $("#dd").click(
12      function(){
13         alert("this取值:"+this.value+"--"+this);//this是js中返回html对象,所以要这样用。
14        alert("$(this)取值:"+$(this).val()+"--"+$(this));//$(this)返回封装后的jquery对象,所以要用jquery的方法。
15      }
16    )
17 </script>
18 </body>
19 </html>

 

以上是关于jQuery中this与$(this)的区别实例的主要内容,如果未能解决你的问题,请参考以下文章

jQuery中this与$(this)的区别总结

$(this)与this的区别

jquery中this与 this 的用法区别

jquery中$(this)和this的区别

JQuery_$(this)和this的区别

this与$(this)的区别