当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery Mobile jQuery.mobile.path.makePathAbsolute()用法及代码示例


jQuery.mobile.path.makePathAbsolute( relPath, absPath )

返回:Boolean

说明:用于将相对文件或目录路径转换为绝对路径的实用方法。

  • jQuery.mobile.path.makePathAbsolute( relPath, absPath )

给定一个相对于另一个绝对路径的路径,此实用程序将根据给定的绝对路径将相对路径转换为绝对路径。

例子:

jQuery.mobile.path.makePathAbsolute的各种用途

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery.mobile.path.makePathAbsolute 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="file.html relative to /a/b/c/bar.html" class="myButton" data-inline="true">
    <input type="button" value="../../file.html relative to /a/b/c/bar.html" 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 arguments = $( this ).attr( "value" ).split( " relative to " ),
    absolutePath = $.mobile.path.makePathAbsolute( arguments[ 0 ], arguments[ 1 ] );
 
  $( "#myResult" ).text( absolutePath );
  })
});
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 jQuery.mobile.path.makePathAbsolute()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。