如何使用 jQuery 解码 JSONP 数据?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您阅读 http://en.wikipedia.org/wiki/JSONP 您就会明白需要将您的内容包装到 Javascript 函数中,例如:
remoteScripts.js:
因此在 HTML 页面中您可以通过 JQuery 执行以下操作:
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:
and so in your HTML page you can do via JQuery: