search

Home  >  Q&A  >  body text

ajax的url怎么写?

一个项目分为biz端和web端,在进行前后台交互时,ajax中的url该怎样写?请举例解释下,麻烦了,谢谢!

phpcn_u806phpcn_u8062860 days ago1446

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:36:42

    How to write the url of ajax? -PHP Chinese website Q&A-How to write the ajax url? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 阿神

    阿神2017-02-28 13:20:32

    URL改怎么写???
    就写你获取数据或者提交数据的url路径啊
    比如
    1、相对于网站根目录可以用"/"开始
    $.ajax({
    url:"/getdata"
    })

    2、相对于上一级目录
    $.ajax({
    url:"../getdata"
    })

    3、同目录
    $.ajax({
    url:"getdata"
    })

    4、下级目录
    $.ajax({
    url:"/lu/getdata"
    })

    5、全路径
    $.ajax({
    url:"http://www.baidu.com/lu/getdata"
    })

    reply
    0
  • Cancelreply