我在页面上链接了属性target,它在浏览器中打开新标签并重定向到给定的href。在打开新选项卡刷新或重定向基本选项卡之前,我该怎么办?
我可以在jquery中完成吗?
答案 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"});
我没有测试过,但它应该可以运行