jQuery中this与$(this)的区别实例
<p><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<a href="http://www.w3.org/TR/html4/loose.dtd">http://www.w3.org/TR/html4/loose.dtd</a>"> <html> <head> <title> this----$(this)区别 </title> <meta name="Author" content="lushuaiyin"> <script type="text/javascript" src="jquery-1.7.1.js"></script> </head></p><p> <body> <input type="text" id="dd" value="gg" /> </body> </html></p><p><script> $("#dd").click( function () { alert("this取值:"+this.value+"--"+this);//this是js中返回html对象,所以要这样用。 alert("$(this)取值:"+$(this).val()+"--"+$(this));//$(this)返回封装后的jquery对象,所以要用jquery的方法。 } ); </script> </p>
摘自:http://blog.csdn.net/lushuaiyin/article/details/7609389
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。