如果标题 = 则 jQuery 关闭窗口

发布于 2024-12-11 07:00:01 字数 144 浏览 0 评论 0原文

如果页面标题与我请求的相同,我想关闭浏览器窗口。

我有一个为这家公司构建的 CRM,他们使用 vicidial 我需要做的是关闭弹出窗口,我已经将页面标题更改为

公司名称 - vicidial

如果已设置该标题,我想关闭该窗口

I am wanting to close a browser window if the page title is the same as I am requesting.

I have a CRM I built for this company and they use vicidial what I need to do is close the popup window which i have already changed the title of the page to

companyname - vicidial

I want to close that window if that title has been set

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

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

发布评论

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

评论(1

不弃不离 2024-12-18 07:00:01

您可以通过 document.title 获取标题
所以:

if (document.title === "the title you want") {
    window.close();
}

you can get title by document.title
so:

if (document.title === "the title you want") {
    window.close();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文