jQuery 无法 $(...).load() Chrome 中的标题
我需要通过 URL 获取远程页面的标题。该代码可以在 FFX 中运行,但不能在 chrome 中运行。有人有什么想法吗?
$(document).ready(function(){
$("title").remove();
$("head").load("http://www.latentmotion.com title");
});
I need to get the title of a remote page by URL. The code works in FFX, but not chrome. Anyone have any ideas?
$(document).ready(function(){
$("title").remove();
$("head").load("http://www.latentmotion.com title");
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里,这适用于所有浏览器
您可以在这里测试它 http://jsfiddle.net/N7D5r/
并且如果你想完全避免使用 jQuery
Here, this works in all browsers
You can test it here http://jsfiddle.net/N7D5r/
And if you want to avoid jQuery altogether