下载的源码中XMLHttpRequestjQueryJsonp.html脚本中get请求的端口号为8000,改为8080就可以实现了。 同样需要测试POST返回结果的同学,请将POST请求的端口号也改一下,并在serverjsonp.php中加入头信息
header("Access-Control-Allow-Origin:*");(必要)
header("Access-Control-Allow-Methods:POST,GET");(非必要)
header("Access-Control-Allow-Origin:*");(必要)
header("Access-Control-Allow-Methods:POST,GET");(非必要)
2017-05-27