window.open open new window?

 

when ever i use

 

 1 window.location.href=//some url 

 

it always open a new window, this only happens when the parent window is an dialog box.

what is wrong?

 

 1 window.open("http://asdf.com", "_self"); 

as suggested on this thread window.location.href opens another window but it is still not working

 

Answers:

 

Parent window

1 window.open("http://asdf.com", "window_name","location=1,status=1,scrollbars=1,resizable=no,width=650,height=650");

 

code in a parent window to open new

1 window.open('http://www.google.com', 'window_name', '_self')

 

posted on 2018-04-18 16:32  一只阿木木  阅读(1510)  评论(0编辑  收藏  举报