手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >使用jQuery mobile库检测url绝对地址和相对地址的方法
使用jQuery mobile库检测url绝对地址和相对地址的方法
摘要:path.isAbsoluteUrl()检测绝对网址jQuery.mobile.path.isAbsoluteUrl(url)如果一个URL...

path.isAbsoluteUrl() 检测绝对网址

jQuery.mobile.path.isAbsoluteUrl(url)

如果一个URL是绝对的实用方法。如果URL是绝对的这个函数返回一个布尔值 true ,否则返回 false。

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery.mobile.path.isAbsoluteUrl 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="//foo.com/a/file.html" id="button2" data-inline="true" /> <input type="button" value="/a/file.html" id="button3" data-inline="true" /> <input type="button" value="file.html" id="button4" data-inline="true" /> <input type="button" value=""button5" data-inline="true" /> <input type="button" value="#foo" id="button6" data-inline="true" /> <div id="myResult">The result will be displayed here</div> </div> </div> <script> $(document).ready(function() { $( ".myButton" ).on( "click", function() { var isAbs = $.mobile.path.isAbsoluteUrl( $( this ).attr( "value" ) ); $( "#myResult" ).html( String( isAbs ) ); }) }); </script> </body> </html>

path.isRelativeUrl() 检查相对网址

jQuery.mobile.path.isRelativeUrl( url )

如果URL是相对的网址,这个函数返回一个布尔值 true,否则返回 false。

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery.mobile.path.isRelativeUrl 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="//foo.com/a/file.html" id="button2" data-inline="true" /> <input type="button" value="/a/file.html" id="button3" data-inline="true" /> <input type="button" value="file.html" id="button4" data-inline="true" /> <input type="button" value=""button5" data-inline="true" /> <input type="button" value="#foo" id="button6" data-inline="true" /> <div id="myResult">The result will be displayed here</div> </div> </div> <script> $(document).ready(function() { $( ".myButton" ).on( "click", function() { var isRel = $.mobile.path.isRelativeUrl( $( this ).attr( "value" ) ); $( "#myResult" ).html( String( isRel ) ); }) }); </script> </body> </html>

【使用jQuery mobile库检测url绝对地址和相对地址的方法】相关文章:

js操作css属性实现div层展开关闭效果的方法

JavaScript检测鼠标移动方向的方法

jQuery仿gmail实现fixed布局的方法

jQuery取消ajax请求的方法

jquery预加载图片的方法

jQuery结合ajax实现动态加载文本内容

js+html5实现canvas绘制圆形图案的方法

JS或jQuery获取ASP.NET服务器控件ID的方法

jQuery实现页面内锚点平滑跳转特效的方法总结

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

精品推荐
分类导航