[removed].href on ajax success not working

前端 未结 4 1515
闹比i
闹比i 2020-12-10 13:57

I\'ve been trying to solve this for a while now, but I can\'t get itworking. When a user clicks a link he\'s asked to confirm that he wants to take this action. Then a ajax

4条回答
  •  感情败类
    2020-12-10 14:27

    Try using assign() instead:

    window.location.assign(data);
    

    window.location.href is a property, not a method.

提交回复
热议问题