jQuery clone() 元标题 / document.title

发布于 2024-11-16 07:57:38 字数 205 浏览 9 评论 0原文

可以使用 jQuery clone() 元标题吗?基本上我试图抓住元标签标题并将其放在一些单词的末尾,例如“相关产品...”、“配件...”。下面不起作用,但在示例中。

IE:

$('document.title').clone().appendTo('#similar, #suggested');

Can one use jQuery to clone() a meta title? Basically I am trying to grab the Meta Tag Title and put it at the end of some words such as "Related Products for...", "Accessories for...". Below doesn't work but is in for example.

ie:

$('document.title').clone().appendTo('#similar, #suggested');

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

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

发布评论

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

评论(2

岁月染过的梦 2024-11-23 07:57:38

如果您只是对附加字符串感兴趣,为什么不直接使用 document.title 呢?

$('#similar, #suggested').append( document.title );

示例: http://jsfiddle.net/Uyfae/

If you're just interested in appending the string, why not just use document.title?

$('#similar, #suggested').append( document.title );

Example: http://jsfiddle.net/Uyfae/

淑女气质 2024-11-23 07:57:38

尝试以这种方式获取值

$("head title").text();

Try getting the value this way

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