我正在尝试在 jQuery 使用 live() 添加的新元素上设置此代码
var frcode = '<iframe scrolling="no"></iframe>';
$('.foo:nth-child(3n),.foo:last-child').after(frcode);
$('.foo:first').before(frcode);
我尝试了 livequery 插件,但对我来说效果不佳
我尝试使用的 Livequery 插件
$(".foo:nth-child(3n),.foo:last-child").livequery(function(){
$(this).after(frcode);
});
$(".foo:first").livequery(function(){
$(this).before(frcode);
});