当前位置:  开发笔记 > 编程语言 > 正文

jQuery是否有内置函数来返回rootURL?

如何解决《jQuery是否有内置函数来返回rootURL?》经验,为你挑选了2个好方法。

我通常使用下面的函数来返回根URL,如果我需要这个,但想想问jQuery是否有一个"单行"方式来做到这一点...

function getRootURL()
        {
            var baseURL = location.href;
            var rootURL = baseURL.substring(0, baseURL.indexOf('/', 7));

            // if the root url is localhost, don't add the directory as cassani doesn't use it
            if (baseURL.indexOf('localhost') == -1)
            {
                return rootURL + "/AppName/";
            } else {
                return rootURL + "/";
            }
        }

meouw.. 12

关于什么

document.location.hostname


Leandro Ardi.. 9

你可以这样做:

alert(location.host)

使用location.hostname,您无法获得端口(如果有特殊端口,如:8080).



1> meouw..:

关于什么

document.location.hostname



2> Leandro Ardi..:

你可以这样做:

alert(location.host)

使用location.hostname,您无法获得端口(如果有特殊端口,如:8080).

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有