jquery跨域发送Post请求该怎么处理

2025-04-15 06:30:39
推荐回答(1个)
回答1:

跨域请求的时候,将平常常设置的ajax选项

dataType:'json',

修改为

dataType:'jsonP',

即可。