重定向浏览器中的两个选项卡

时间:2011-02-22 11:25:27

标签: jquery

我在页面上链接了属性target,它在浏览器中打开新标签并重定向到给定的href。在打开新选项卡刷新或重定向基本选项卡之前,我该怎么办?

我可以在jquery中完成吗?

1 个答案:

答案 0 :(得分:1)

您可以在锚标记上设置回调以进行重定向。线路中的东西:

<a href="something.html" target="_blank" id="test">test</a>

// Not 100% sure if document.location is perfect xbrowser, but you get the point

$("#test").click(function(e){document.location = "otherpage.html"});

我没有测试过,但它应该可以运行