1

如何关闭框架并重定向新 url 以在同一窗口中打开?

此处框架关闭,但未重定向到 google.com。

代码:

function close_pay3() {
  window.parent.$(".effect" ).hide('clip', 1000 ); 
  return false;
  window.open('https://www.google.com','_self');
}
<a href="#" style="text-decoration:none;"><input type="button" onClick="close_pay3()" class="close-btn" value="Login" name="boxclose" />  
</a>
4

4 回答 4

3

return在你的window.open... 之前退出函数的地方return false;作为最后一行。

于 2013-06-07T06:43:16.970 回答
2
function close_pay3() {
    window.parent.$(".effect").hide('clip', 1000,function(){
      window.open('https://www.google.com', '_self');

     });

}

.

<a href="#" style="text-decoration:none;"><input type="button" onClick="close_pay3(); return false;" class="close-btn" value="Login" name="boxclose" />  
</a>
于 2013-06-07T06:46:47.930 回答
1

您已将 all function() 放在弹出框中。

function close_pay3()
{ $(".effect" ).hide('clip', 1000 );
window.parent.document.getElementById('krish').style.display="none";
window.location.href = "https://google.com";
return false;
}<input type="button" onClick="javascript:window.parent.close_pay3()" class="close-btn" value="Login" name="boxclose" />
于 2013-06-07T09:31:36.680 回答
0

返回假;应该在到底之后

window.open('https://www.google.com', '_self');
return false;
于 2013-06-07T06:45:39.060 回答