为什么我的jQuery Feeds插件不起作用?

时间:2014-03-14 18:26:50

标签: javascript jquery rss

这个插件应该在jQuery中显示RSS提要,但是我没有在docs之后得到任何输出。

HTML:

<div id="feeds"></div>

的jQuery

$('#feeds').feeds({
    feeds: {
        feed1: 'http://rollingstonesofficial.tumblr.com/rss'
    }
});

这里有效:http://jsfiddle.net/XmY9d/30/

我有什么遗失吗?

更新1

感谢您的回复。我应该说这个问题也会在Chrome扩展程序中本地发生。

更新2

这些是我在控制台中遇到的错误:

Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".

Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".

两者都出现在第17行的jquery.feeds.min.js中。

1 个答案:

答案 0 :(得分:0)

您无法从raw.github.com中的jsFiddle加载文件。

因此,您可以使用

,而不是通过原始Github包含您的插件
<script src="http://camagu.github.io/jquery-feeds/jquery.feeds.js"></script>

或者您可以将其直接放在Javascript面板中。

<强> Updated Fiddle