如何用jQuery跨越获取json信息


json的提供地址是: http://contests.acmicpc.info/contests...
我采用下面的代码,会出现不允许跨越的提醒,请问有什么办法吗。

$.getJSON('http://contests.acmicpc.info/contests.json');

jquery jquery-ajax Ajax

古德外安666 10 years, 8 months ago

建议使用 CORS (Cross-Origin Resource Sharing) 方案
https://developer.mozilla.org/en-US/d...

JSONP会有被XSS的风险

wunian answered 10 years, 8 months ago

Your Answer