首頁  >  文章  >  web前端  >  JavaScript 中的 `window.location.href` 和 `window.open()` 有什麼不同?

JavaScript 中的 `window.location.href` 和 `window.open()` 有什麼不同?

Patricia Arquette
Patricia Arquette原創
2024-11-05 09:41:02183瀏覽

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

JavaScript 中window.location.href 和window.open() 方法的區別

window.location.href 和window 的區別. open() 在於其本質和功能。

window.location.href

  • 不是方法而是屬性.
  • 檢索瀏覽器的當前URL位置。
  • 修改其值會重新導向目前頁面。

範例:

<code class="javascript">window.location.href = "http://www.example.com"; // Redirects to example.com</code>

window.open()

  • 是一個採用🎜參數的方法。
  • 建立一個新的瀏覽器視窗或標籤並導航到指定的 URL。

範例:

<code class="javascript">window.open("http://www.google.com"); // Opens Google in a new window</code>

其他功能

  • 其他功能
視窗.附加參數來自訂新窗口,例如其大小、位置和功能(例如選單列、工具列)。 有關 window.open() 參數的更多信息,請參閱window.open 教程。

以上是JavaScript 中的 `window.location.href` 和 `window.open()` 有什麼不同?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn