如何使用 Javascript 删除网页标题的一部分

发布于 2024-11-11 18:02:23 字数 355 浏览 0 评论 0原文

我对 Javascript 很陌生,所以请原谅我的基本问题。我正在尝试找到一种方法,在用户脚本中使用 Javascript 删除网页标题的某些部分。以该页面的标题为例:

如何使用Javascript删除网页标题的部分内容 - 代码日志

我想删除“-”和网站名称,使其变为:

如何使用 Javascript 删除部分网页标题

我知道如何使用 document.title = "new title"; 更改整个标题,但这只是我能得到的最接近的结果。有人可以帮忙吗?

提前致谢。

I'm new at this Javascript stuff, so please excuse my basic question. I'm trying to find a way to remove some portion of a web page title using Javascript in a userscript. Take for example the title of this page:

How to remove portions of Web page title using Javascript - Stack Overflow

I want to yank out the '-' and Website name so that it becomes:

How to remove portions of Web page title using Javascript

I know how to change the entire title using document.title = "new title";, but that's about the closest I can get. Can someone please help?

Thanks in advance.

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

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

发布评论

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

评论(1

笑叹一世浮沉 2024-11-18 18:02:23

这应该可以做到:

document.title.substr(0,document.title.lastIndexOf("-"));

它会删除最后一次出现的“-”中的所有内容。

http://jsfiddle.net/niklasvh/TA69F/

This should do it:

document.title.substr(0,document.title.lastIndexOf("-"));

It removes everything from the last occurrence of "-".

http://jsfiddle.net/niklasvh/TA69F/

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