用一個例子說明jquery的$(this):
<img id="this-keleyi-com" src="http:///image/a/tvh00n12.jpg" alt="" />
<script type="text/javascript" src="http:///keleyi/pmedia/jquery/jquery-1.10.2.min.js"></script>
<script>
$("#this-ke"+"leyi-com").click(
function(){
alert($(this).attr("src"))
}
)
</script>
上面代碼的效果:
請點擊上面圖片。
點擊圖片後會彈出對話框,顯示圖片的src屬性:http:///image/a/tvh00n12.jpg
也就是說:$(this)表示$("#this-ke"+"leyi-com"),是圖片的jquery對象。