开发者

Jquery: How to select only within a selection?

var parent = $("#jcontent");
var button1 = parent(".button1")

How to select .button开发者_C百科1 knowing it is inside the parent while not reusing #jcontent?

I need to do this because I only want to pass the parent as parameter and to be able to cache it which is faster.


Another alternative

var parent = $("#jcontent"); 
var button1 = $(".button1", parent) ;


var button1 = parent.find(".button1");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜