JS Bookmarklet——脚本无法在某些网站上运行

发布于 2024-12-22 13:19:11 字数 524 浏览 0 评论 0原文

我正在创建一个小书签,它在某些网站上运行良好,但在其他网站上则完全不起作用。当失败时,脚本仍然添加到底部...但只有部分 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 技术交流群。

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

发布评论

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

评论(1

攀登最高峰 2024-12-29 13:19:11

这应该有效。

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();
}

虽然我推荐这个;

if (typeof jQuery == 'undefined') {
    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();
}

This should work.

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();
}

Althought I recommend this;

if (typeof jQuery == 'undefined') {
    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();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文