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

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

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

6条回答
  •  天涯浪人
    2020-11-22 11:33

    window.location.href is not a method, it's a property that will tell you the current URL location of the browser. Changing the value of the property will redirect the page.

    window.open() is a method that you can pass a URL to that you want to open in a new window. For example:

    window.location.href example:

    window.location.href = 'http://www.google.com'; //Will take you to Google.
    

    window.open() example:

    window.open('http://www.google.com'); //This will open Google in a new window.
    

    Additional Information:

    window.open() can be passed additional parameters. See: window.open tutorial

提交回复
热议问题