在may应用程序中,我使用ajax url作为示例:
url: '/Home/wlMulti',我在Google Chrome中看到这个错误:
uncaught typeerror property 'location' of object object global is not a function任何想法!!我应该使用~/Home/..会很感谢你的帮助。
发布于 2013-06-24 11:15:57
问题出在
window.location("/Home/...");将其更改为
window.location.href = "/Home/....";https://stackoverflow.com/questions/17266692
复制相似问题