码迷,mamicode.com
首页 > 其他好文 > 详细

path方法总结

时间:2014-11-26 18:27:40      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   文件   

$.mobile.path.get(url);//获取URL地址的目录部分,就是除了a.html之外的那部分

jQuery.mobile.path.getDocumentBase(bool) //获取文档地址的根目录,默认参数为false,返回一个对象,如果是false,返回一个当前URL字符串,如http://localhost:4479/www/login.html

bubuko.com,布布扣

jQuery.mobile.path.getDocumentUrl(bool) 这个方法和jQuery.mobile.path.getDocumentBase(bool)是一样的

 

jQuery.mobile.path.getLocation() 等同于jQuery.mobile.path.parseLocation() 返回当前URL

 

jQuery.mobile.path.isAbsoluteUrl( url ) 判断url是否是绝对路径 ,如果是绝对路径返回true,否则返回false,如

jQuery.mobile.path.isAbsoluteUrl(‘http://localhost:4479/www/login.html‘);//ture 

jQuery.mobile.path.isAbsoluteUrl("//foo.com/a/file.html" ) ;//false

jQuery.mobile.path.isRelativeUrl( url ) 判断URL是否是相对路径,是返回true,否则返回false

jQuery.mobile.path.isSameDomain(url1, url2),判断两个URL地址是否在同一个域名下,是返回true,反正false

 

jQuery.mobile.path.makePathAbsolute( relPath, absPath ) //将第一个相对路径的URL或者文件变为绝对路径

 

jQuery.mobile.path.makeUrlAbsolute( relUrl, absUrl ) 将相对路径变为按指定格式的绝对路径

$.mobile.path.makeUrlAbsolute( "../../foo/file.html", "http://foo.com/a/b/c/test.html" ) 结果:http://foo.com/a/foo/file.html

 

 

 

path方法总结

标签:style   blog   http   io   ar   color   os   sp   文件   

原文地址:http://www.cnblogs.com/toward-the-sun/p/4123660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!