Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

When I do a window.open() is there a way to tell the browser to stay on the current window or tab and not go to the new tab or window?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
283 views
Welcome To Ask or Share your Answers For Others

1 Answer

Use the _self target.

window.open("http://www.example.com", "_self");

Also take a read at the Mozilla documentation or another reliable source.

For basic Javascript commands, I'd go with W3Schools which, even though unrelated to W3C, provide easy to comprehend info and examples on basically any JS method.

Having more than one source of info is always beneficial, and you can always use Google as well.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...