我试图在将链接悬停但不工作时加载框架中的链接。如果我将此功能用于我在页面上创建的任何链接都可以正常工作,但是当我在动态创建的情况下使用它时不起作用。
这是在页面上创建的数据
$('#user-tweets').append('<table class="tweets" width="320" border="0"><tr><td rowspan="1">' +
user + '</td><td rowspan="1">' +
date + '</td></tr><tr><td width="45"><a href="' +
profile_img + '"><img src="' +
profile_img + '" width="55" height="50"/></a></td><td width="186">' +
text + '<p><a href="' + url + '"target="_blank">' +
url + '</a></p></td></tr></table><hr>'
);
...并且当我悬停时,我正在使用此功能将链接打开到框架中。
$("a").hover(
function() {
$(this).append($("<iframe src='"+this.href+"'></iframe>"));
},
function () {
$(this).find("iframe:last").remove();
}
);