我正在使用此脚本强制链接到使用 Jquery 在新窗口中打开,它工作正常
// add external links
function addExternalLinks () {
$("a[href*='http://']:not([href*='"+location.hostname.replace
("www.","")+"']), a.linkException").each(function() {
if($(this).find('img ').length == 0) {
$(this).click(function(event) {
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
}).addClass('externalLink').attr("title", $(this).attr("title")+" - ( This link will open in a new window )");
}
});
}
但是,页面的一部分正在使用从外部 HTML 页面加载的内容,使用 LOAD。
function showInfo( info ) {
$("#layerinfo").load("descriptions.html #" + info );
};
我希望这个加载的内容中包含的链接也被强制在具有相同脚本的新寡妇中打开。我无法让它正常工作。
就像是 :-
function showInfo( info ) {
var infoContent = "descriptions.html #" + info;
$("#layerinfo").load(infoContent,function(){
$("#layerinfo").html().addExternalLinks();
});
};
非常感谢任何帮助。