How to get base url with jquery or javascript?

后端 未结 24 1358
忘掉有多难
忘掉有多难 2020-12-12 13:59

In joomla php there I can use $this->baseurl to get the base path, but I wanted to get the base path in jquery.

The base path may be any of the follo

24条回答
  •  -上瘾入骨i
    2020-12-12 14:33

    Split and join the URL:

    const s = 'http://free-proxy.cz/en/abc'
    console.log(s.split('/').slice(0,3).join('/'))
    

提交回复
热议问题