ホームページ > 記事 > ウェブフロントエンド > jQuery モバイル ライブラリを使用して絶対 URL アドレスと相対 URL アドレスを検出する方法
この記事では主に jQuery モバイル ライブラリの使用方法を紹介します。絶対アドレスと相対アドレスを監視する方法は、それぞれ isAbsoluteUrl() メソッドと isRelativeUrl() メソッドを使用することです。必要な場合は、
path.isAbsoluteUrl() を参照して絶対 URL を検出できます。
jQuery.mobile.path.isAbsoluteUrl(url)
URL が絶対の場合、この 関数 は URL が絶対の場合は true を返し、それ以外の場合は false を返します。 >path.isRelativeUrl() 相対 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.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> <!-- The script below can be omitted --> <script src="/resources/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> <p data-role="page"> <p data-role="content"> <input type="button" value="http://foo.com/a/file.html" id="button1" class="myButton" data-inline="true" /> <input type="button" value="//foo.com/a/file.html" id="button2" class="myButton" data-inline="true" /> <input type="button" value="/a/file.html" id="button3" class="myButton" data-inline="true" /> <input type="button" value="file.html" id="button4" class="myButton" data-inline="true" /> <input type="button" value="?a=1&b=2" id="button5" class="myButton" data-inline="true" /> <input type="button" value="#foo" id="button6" class="myButton" data-inline="true" /> <p id="myResult">The result will be displayed here</p> </p> </p> <script> $(document).ready(function() { $( ".myButton" ).on( "click", function() { var isAbs = $.mobile.path.isAbsoluteUrl( $( this ).attr( "value" ) ); $( "#myResult" ).html( String( isAbs ) ); }) }); </script> </body> </html>
URL が相対 URL の場合、この関数はブール値 true を返し、そうでない場合は false を返します。🎜> 上記は、jQuery モバイル ライブラリを使用して行う方法です。 URL の絶対アドレスと相対アドレスを検出します。その他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn)
jQuery.mobile.path.isRelativeUrl( url )に注目してください。