请看一下我的以下 js 函数。如果我在没有 _self 属性的情况下进行重定向,该功能可以正常工作。此外,无论我做了什么,它都没有停止页面本身的重定向,我认为这就是为什么它_self
不起作用并且适用于_blank
.
function checkcat()
{
if ($(".caty").find(".active-cat").length > 0){
window.open("http://www.google.com","_self");
// window.open("http://www.google.com","_blank");
}
else
{
alert('Aloha!!!');
// Following I used to strictly stop the redirection but it didnot work :(
stopPropagation();
preventDefault();
return false;
}
}