手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery mobile转换url地址及获取url中目录部分的方法
jQuery mobile转换url地址及获取url中目录部分的方法
摘要:path.makeUrlAbsolute()把相对URL转化为绝对URLjQuery.mobile.path.makeUrlAbsolute...

path.makeUrlAbsolute() 把相对URL转化为绝对URL

jQuery.mobile.path.makeUrlAbsolute( relUrl, absUrl )

把相对URL转化为绝对URL的方法。这个函数返回一个字符串,绝对URL。

relUrl:相对网址。类型:字符串。

absUrl:绝对网址。类型:字符串。

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery.mobile.path.makeUrlAbsolute demo</title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css"> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <> <script src="http://www.jb51.netresources/turnOffPushState.js"></script> <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script> <style> #myResult{ border: 1px solid; border-color: #108040; padding: 10px; } </style> </head> <body> <div data-role="page"> <div data-role="content"> <p>The absoulte URL used is http://foo.com/a/b/c/test.html</p> <input type="button" value="file.html" id="button1" data-inline="true"> <input type="button" value="../../foo/file.html" id="button2" data-inline="true"> <input type="button" value="//foo.com/bar/file.html" id="button3" data-inline="true"> <input type="button" value=""button4" data-inline="true"> <input type="button" value="#bar" id="button5" data-inline="true"> <div id="myResult">The result will be displayed here</div> </div> </div> <script> $(document).ready(function() { $( ".myButton" ).on( "click", function() { var absUrl = $.mobile.path.makeUrlAbsolute( $( this ).attr( "value" ), "http://foo.com/a/b/c/test.html" ); $( "#myResult" ).html( absUrl ); }) }); </script> </body> </html>

path.get() 确定URL中的目录部分

jQuery.mobile.path.get( url )

url:只有一个参数。类型:字符串。

确定URL中的目录部分的实用方法。如果URL没有斜线,URL的一部分被认为是一个文件。这个函数返回一个给定的URL目录部分。

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery.mobile.path.get demo</title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css"> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <> <script src="http://www.jb51.netresources/turnOffPushState.js"></script> <script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script> <style> #myResult{ border: 1px solid; border-color: #108040; padding: 10px; } </style> </head> <body> <div data-role="page"> <div data-role="content"> <input type="button" value="http://foo.com/a/file.html" id="button1" data-inline="true" /> <input type="button" value="http://foo.com/a/" id="button2" data-inline="true" /> <input type="button" value="http://foo.com/a" id="button3" data-inline="true" /> <input type="button" value="//foo.com/a/file.html" id="button4" data-inline="true" /> <input type="button" value="/a/file.html" id="button5" data-inline="true" /> <input type="button" value="file.html" id="button6" data-inline="true" /> <input type="button" value="/file.html" id="button7" data-inline="true" /> <input type="button" value=""button8" data-inline="true" /> <input type="button" value="#foo" id="button9" data-inline="true" /> <div id="myResult">The result will be displayed here</div> </div> </div> <script> $(document).ready(function() { $( ".myButton" ).on( "click", function() { var dirName = $.mobile.path.get( $( this ).attr( "value" ) ); $( "#myResult" ).html( String( dirName ) ); }) }); </script> </body> </html>

【jQuery mobile转换url地址及获取url中目录部分的方法】相关文章:

jQuery获取页面元素绝对与相对位置的方法

js实现鼠标移到链接文字弹出一个提示层的方法

jQuery获得字体颜色16位码的方法

js兼容火狐获取图片宽和高的方法

jQuery实现dialog设置focus焦点的方法

jQuery实现表格行上移下移和置顶的方法

jQuery切换所有复选框选中状态的方法

jQuery实现首页图片淡入淡出效果的方法

jQuery取消ajax请求的方法

JQuery+CSS实现图片上放置按钮的方法

精品推荐
分类导航