jQuery 添加共享图标脚本

发布于 2024-08-29 04:20:30 字数 592 浏览 9 评论 0原文

我正在尝试通过 jQuery 添加共享图标 [1]。不幸的是,我似乎无法做到这一点,因为 jQuery 似乎转义了脚本代码,而且我似乎无法让它与 .text() 或 .html() 一起使用。

有没有人得到这个或类似的东西,工作?

我正在尝试的代码是:

var enc = $('<div/>')
            .text('<script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=faa9f152-cae0-4ff3-bab7-32ae934bc698&amp;type=website&amp;style=ro
            ;

$('<div/>')
    .appendTo(nav)
    .addClass('navItem')
    .append(eval(enc))
    ;

[1] http://sharethis.com/

I'm trying to add via jQuery the share icon [1]. Unfortunately I can't seem to do this as jQuery appears to escape the script code and I can't seem to get it to work with .text() or .html().

Has anyone gotten this, or something similar, working?

The code I'm trying is:

var enc = $('<div/>')
            .text('<script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=faa9f152-cae0-4ff3-bab7-32ae934bc698&type=website&style=ro
            ;

$('<div/>')
    .appendTo(nav)
    .addClass('navItem')
    .append(eval(enc))
    ;

[1] http://sharethis.com/

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

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

发布评论

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

评论(2

奢欲 2024-09-05 04:20:30

使用 $.getScript(url, callback) 加载脚本在运行时。

脚本加载时会触发回调。

Use $.getScript(url, callback) for loading scripts at runtime.

The callback is triggered when the script is loaded.

黄昏下泛黄的笔记 2024-09-05 04:20:30

尝试在末尾添加 html() 首先将 html 标签转换为其实体 例如:

var enc = $('<div/>')
        .text('<script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=faa9f152-cae0-4ff3-bab7-32ae934bc698&type=website&')
.html();

更多信息此处:http://debuggable.com/posts/encode-html-entities-with-jquery:480f4dd6- 13cc-4ce9-8071-4710cbdd56cb

Try adding html() at the end to first convert html tags to their entities eg:

var enc = $('<div/>')
        .text('<script type="text/javascript" src="http://w.sharethis.com/button/sharethis.js#publisher=faa9f152-cae0-4ff3-bab7-32ae934bc698&type=website&')
.html();

More Info Here: http://debuggable.com/posts/encode-html-entities-with-jquery:480f4dd6-13cc-4ce9-8071-4710cbdd56cb

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