jquery ajax problem in chrome

后端 未结 8 975
南旧
南旧 2020-11-28 07:41

i have the following jquery code running on my page just fine in FF and IE, but chrome seems to be freaking out..

in FF and IE the call is made and the result is app

相关标签:
8条回答
  • 2020-11-28 08:27

    Use POST method in servlet and change type:POST in $.ajax.

    0 讨论(0)
  • 2020-11-28 08:28

    Try setting the data parameter to "".

    For GET requests, the data parameter is appended to the URL. Not sure why Chrome would have an issue with that but it's worth a shot :)

    0 讨论(0)
提交回复
热议问题