JS Bookmarklet——脚本无法在某些网站上运行
我正在创建一个小书签,它在某些网站上运行良好,但在其他网站上则完全不起作用。当失败时,脚本仍然添加到底部...但只有部分 javascript 运行。
我假设存在 javascript 冲突...有什么想法吗?我注意到我在已经有 jQuery 的网站上工作最少。
代码如下。谢谢!
if (!($ = window.jQuery)) {
alert('no jquery! its being added');
script = document.createElement( 'script' );
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.onload=runEverything;
document.body.appendChild(script);
} else {
alert('jquery exists!');
runEverything();
}
I'm creating a bookmarklet that works great on some sites, but not at all on others. When it fails, the script is still added to the bottom... but only part of the javascript runs.
I'm assuming there are javascript conflicts... thoughts? I've noticed that I works least on sites that already have jQuery.
The code is below. Thanks!
if (!($ = window.jQuery)) {
alert('no jquery! its being added');
script = document.createElement( 'script' );
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.onload=runEverything;
document.body.appendChild(script);
} else {
alert('jquery exists!');
runEverything();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效。
虽然我推荐这个;
This should work.
Althought I recommend this;