[removed].href and Window.open () methods in JavaS

2018-12-31 18:37发布

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

5条回答
冷夜・残月
2楼-- · 2018-12-31 19:00

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

查看更多
呛了眼睛熬了心
3楼-- · 2018-12-31 19:07
  • 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.

查看更多
唯独是你
4楼-- · 2018-12-31 19:09

window.open () will open a new window, whereas window.location.href will open the new URL in your current window.

查看更多
梦寄多情
5楼-- · 2018-12-31 19:13

There are already answers which describes about window.location.href property and window.open() method.

I will go by Objective use:

1. To redirect the page to another

Use window.location.href. Set href property to the href of another page.

2. Open link in the new or specific window.

Use window.open(). Pass parameters as per your goal.

3. Know current address of the page

Use window.location.href. Get value of window.location.href property. You can also get specific protocol, hostname, hashstring from window.location object.

See Location Object for more information.

查看更多
高级女魔头
6楼-- · 2018-12-31 19:21

window.open is a method; you can open new window, and can customize it. window.location.href is just a property of the current window.

查看更多
登录 后发表回答