jQuery clone() 元标题 / document.title
可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只是对附加字符串感兴趣,为什么不直接使用
document.title
呢?示例: http://jsfiddle.net/Uyfae/
If you're just interested in appending the string, why not just use
document.title
?Example: http://jsfiddle.net/Uyfae/
尝试以这种方式获取值
Try getting the value this way