jQuery选择器上下文
在下面的代码中, this
是什么意思?
var popup = $(popup , this ).css('opacity', 0);
选择器中的第二个参数是搜索的上下文。 $(a,b)
与$(b).find(a)
。
更多信息可以在jQuery(),“jQuery(selector,[context])”部分找到 。
在下面的代码中, this
是什么意思?
var popup = $(popup , this ).css('opacity', 0);
选择器中的第二个参数是搜索的上下文。 $(a,b)
与$(b).find(a)
。
更多信息可以在jQuery(),“jQuery(selector,[context])”部分找到 。