window.open(URL,名称,规格,替换) ??名称与替换

发布于 2024-12-07 11:48:19 字数 471 浏览 0 评论 0原文

如果当前窗口是www.myparent.com,通过单击按钮-a,它会调用此函数window.open('children','same','',??).新页面打开为 www.myparent.com/children

单击按钮 b,它会调用此函数 window.open('sub','same','',??)< /代码>。

www.myparent.com/childrenwww.myparent.com/sub 替换

现在我想知道,replace 有什么用(true/false )。请查看语法定义

If current window iswww.myparent.com by clicking a button-a, it invokes this function window.open('children','same','',??). The new page opens as www.myparent.com/children

Clicking button-b, it invokes this function window.open('sub','same','',??).

www.myparent.com/children is replaced by www.myparent.com/sub

Now I want to know, what is the use of replace (true/false). Please take a look the syntax definition

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-12-14 11:48:19

实际上这是语法

 window.open(URL,name,specs,replace)

,这是 文档

正如您从文档中看到的,代替

可选。指定 URL 是创建新条目还是替换旧条目
历史列表中的当前条目。支持以下值:
- true - URL 替换历史列表中的当前文档
- false - URL 在历史列表中创建一个新条目

如果将其设置为 true,则在历史列表中,新窗口中打开的页面将替换您当前正在浏览的页面(IE 历史记录中不会有该页面)

Actually this is the syntax

 window.open(URL,name,specs,replace)

and this is the documentation:

As you can see from the docs, replace

Optional.Specifies whether the URL creates a new entry or replaces the
current entry in the history list. The following values are supported:
- true - URL replaces the current document in the history list
- false - URL creates a new entry in the history list

If you set it to true, in your history list the page that is opened in the new window replace the page you are currently browsing (I.E you will not have the page in history)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文