如何使用 jQuery 解码 JSONP 数据?

发布于 2024-11-05 21:01:04 字数 170 浏览 1 评论 0原文

我正在使用 JSONP 从远程服务器检索一些数据。内容包含 HTML,我需要对其进行处理,以便正确呈现字符而不是打印标签。例如,如果某个东西有粗体标签,它应该只是显示为粗体,而周围没有强标签。

这需要在 JavaScript/jQuery 中完成。我在搜索结果中找到的几乎所有内容都使用某种类型的服务器端代码。

I have some data that I'm retrieving using JSONP from a remote server. The content contains HTML and I need to make it so the characters render properly instead of printing the tags out. For example, if something has bold tags, it should just appear bold and not have the strong tags around it.

This needs to be done in JavaScript/jQuery. Just about everything I've found in search results uses some type of server side code.

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

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

发布评论

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

评论(1

陌上芳菲 2024-11-12 21:01:04

如果您阅读 http://en.wikipedia.org/wiki/JSONP 您就会明白需要将您的内容包装到 Javascript 函数中,例如:

remoteScripts.js:

function getContent(){
    return 'YOUR HTML CONTENT';
}

因此在 HTML 页面中您可以通过 JQuery 执行以下操作:

$('YOUR ELEMENT').html(getContent());

If you read http://en.wikipedia.org/wiki/JSONP you can understand that you need to wrap you content into a Javascript function such as:

remoteScripts.js:

function getContent(){
    return 'YOUR HTML CONTENT';
}

and so in your HTML page you can do via JQuery:

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