僅代表個(gè)人看法
看了一些關(guān)于jQuery中this和javaScirpt的this的區(qū)別,描述都不甚明了绢记,很虐新比规。
個(gè)人感覺是兩種對(duì)象分別調(diào)取jQuery和javaScript的函數(shù)。
$this能調(diào)取jQuery類庫(kù)的函數(shù),jQuery函數(shù)更加的簡(jiǎn)潔养葵,兼容性更好。
當(dāng)然瘩缆,this對(duì)象可以通過$(this)轉(zhuǎn)換成jQuery對(duì)象关拒。
<script type="text/javascript">
var p1 = document.getElementById('test1')
p1.addEventListener('click',function(){
//直接通過dom的方法改變顏色
this.style.color = "red";
},false);
</script>
<script type="text/javascript">
$('#test2').click(function(){
//通過包裝成jQuery對(duì)象改變顏色
$(this).css('color','blue');
})
</script>
jQuery的方法更加簡(jiǎn)潔,好用。兼容性也會(huì)相對(duì)更好一些着绊。