Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以加载多个数据文件(file1.xml、file2.xml、file3.xml、..)
jQuery.getJSON
我的目标是在基于 JQuery+HTML5 的应用程序中加载数据。
如果您的数据与执行 AJAX 请求的 javascript 代码在同一个域中,您可以通过一个简单的 jQuery get 请求来完成:
$.get("/url-to-source",function(response){ //do what ever you want to do with response });
如果数据位于与您的 javascript 代码不同的域中,则应使用 jsonp,请参见示例:
http://www.jquery4u.com/json/jsonp-examples/