Ajax : Why success displays 0?

前端 未结 10 1210
生来不讨喜
生来不讨喜 2021-01-01 19:02

I use ajax with jquery and when I tried to display the result in popup. Then alert always displays 0

success : function(results) { 
alert(result         


        
10条回答
  •  醉酒成梦
    2021-01-01 19:42

    That's probably because the server side script you are calling with AJAX returns 0 (the one you have specified in the url property).

提交回复
热议问题