您好我使用以下jquery制作div cliackable(用于页面皮肤广告):
$url = "http://google.com";
$("#toLeft,#toRight").click(
function()
{
window.location = $url;
return false;
});
我需要确保在点击链接时,它会在另一个窗口中打开。通常,我使用此代码片段在新窗口中打开所有外部链接,但它不能用于此(由于jquery生成的链接):
$("a").filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target', '_blank');
我有什么想法可以做到这一点吗?