jQuery.mobile.path.get( url )
返回:Boolean
说明:用于确定 URL 的目录部分的实用方法。
-
jQuery.mobile.path.get( url )
-
url类型:String
-
用于确定 URL 的目录部分的实用方法。如果 URL 没有尾部斜杠,则 URL 的最后一个组件被认为是一个文件。此函数返回给定 URL 的目录部分。
例子:
jQuery.mobile.path.get的各种用途
<!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="//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="http://foo.com/a/" id="button2" class="myButton" data-inline="true">
<input type="button" value="http://foo.com/a" id="button3" class="myButton" data-inline="true">
<input type="button" value="//foo.com/a/file.html" id="button4" class="myButton" data-inline="true">
<input type="button" value="/a/file.html" id="button5" class="myButton" data-inline="true">
<input type="button" value="file.html" id="button6" class="myButton" data-inline="true">
<input type="button" value="/file.html" id="button7" class="myButton" data-inline="true">
<input type="button" value="?a=1&b=2" id="button8" class="myButton" data-inline="true">
<input type="button" value="#foo" id="button9" 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 dirName = $.mobile.path.get( $( this ).attr( "value" ) );
$( "#myResult" ).html( String( dirName ) );
})
});
</script>
</body>
</html>
演示:
相关用法
- JQuery Mobile jQuery.mobile.path.isRelativeUrl()用法及代码示例
- JQuery Mobile jQuery.mobile.path.makePathAbsolute()用法及代码示例
- JQuery Mobile jQuery.mobile.path.isAbsoluteUrl()用法及代码示例
- JQuery Mobile jQuery.mobile.path.makeUrlAbsolute()用法及代码示例
- JQuery Mobile jQuery.mobile.path.isSameDomain()用法及代码示例
- JQuery Mobile jQuery.mobile.path.parseUrl()用法及代码示例
- JQuery Mobile jQuery.mobile.navigate()用法及代码示例
- JQuery Mobile jQuery.mobile.silentScroll()用法及代码示例
- JQuery Mobile jQuery.mobile.degradeInputsWithin()用法及代码示例
- JQuery jQuery.map()用法及代码示例
- JQuery jQuery.merge()用法及代码示例
- JQuery jQuery.makeArray()用法及代码示例
- JQuery jQuery.inArray()用法及代码示例
- JQuery jQuery.when()用法及代码示例
- JQuery jQuery.grep()用法及代码示例
- JQuery jQuery.dequeue()用法及代码示例
- JQuery jQuery.escapeSelector()用法及代码示例
- JQuery jQuery.cssNumber用法及代码示例
- JQuery jQuery.readyException()用法及代码示例
- JQuery jQuery.parseJSON()用法及代码示例
- JQuery jQuery.contains()用法及代码示例
- JQuery jQuery.each()用法及代码示例
- JQuery jQuery.unique()用法及代码示例
- JQuery jQuery.getJSON()用法及代码示例
- JQuery jQuery.proxy()用法及代码示例
注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 jQuery.mobile.path.get()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。