當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery Mobile jQuery.mobile.path.isAbsoluteUrl()用法及代碼示例


jQuery.mobile.path.isAbsoluteUrl( url )

返回:Boolean

說明:用於確定 URL 是否為絕對 URL 的實用方法。

  • jQuery.mobile.path.isAbsoluteUrl( url )

用於確定 URL 是否為絕對 URL 的實用方法。如果 URL 是絕對的,則此函數返回布爾值 true,否則返回 false。

例子:

jQuery.mobile.path.makeUrlAbsolute的各種用途

<!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="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css">
  <script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
  <script src="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
  <style>
  #myResult{
    border: 1px solid;
    border-color: #108040;
    padding: 10px;
    }
  </style>
</head>
<body>
 
  <div role="main" class="ui-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" />
    <div id="myResult">The result will be displayed here</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>

演示:

相關用法


注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 jQuery.mobile.path.isAbsoluteUrl()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。