2024年05月25日 建站教程
$(this)
是jQuery中的一个关键字,代表当前操作的元素。在jQuery
中,这是指向当前元素的指针。$(this)
可以理解为将this
指向的DOM
元素转化为jQuery
对象。
示例如下:
$(function(){ $('li').each(function(){ $(this).attr('title', $(this).text()); }); }); //在一个each循环中,$(this)可以代表当前正在处理的元素
本文链接:http://so.lmcjl.com/news/5286/