[removed].href and window.open () methods in JavaScript

前端 未结 6 840
北海茫月
北海茫月 2020-11-22 10:48

What is the difference between window.location.href and window.open () methods in JavaScript?

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 11:49

    • window.open will open a new browser with the specified URL.

    • window.location.href will open the URL in the window in which the code is called.

    Note also that window.open() is a function on the window object itself whereas window.location is an object that exposes a variety of other methods and properties.

提交回复
热议问题