ajax url地址

Posted boyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax url地址相关的知识,希望对你有一定的参考价值。

 

当前网址

http://localhost:8080/exam_paper/402881ec5c3924ec015c394ee4210000/set_questions

ajax请求url

var url = "exam_questions/json?type=" + type ;

请求之后的网址

http://localhost:8080/exam_paper/402881ec5c3924ec015c394ee4210000/exam_questions/json?type=2

 

正确的请求网址是

 http://localhost:8080/exam_questions/json?type=2

正确的ajax请求url

var url = "../../exam_questions/json?type=" + type ;

 

以上是关于ajax url地址的主要内容,如果未能解决你的问题,请参考以下文章

ajax url地址

Thinkphp Ajax传地址

使用 jquery 地址(ajax)淡入和淡出内容

jQuery地址插件,使用AJAX时路径名改变

myajax中的url应该怎么找?

ajax的url请求到controller中对应的方法,为啥页面报404?