使用jQuery mobile库检测url绝对地址和相对地址的方法
作者:bea
path.isAbsoluteUrl() 检测绝对网址 jQuery.mobile.path.isAbsoluteUrl(url) 如果一个URL是绝对的实用方法。如果URL是绝对的这个函数返回一个布尔值 true ,否则返回 false。 <!doctype html><html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" co
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>
<!-- 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>
<div data-role="page">
<div 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" />
<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>
<!-- 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>
<div data-role="page">
<div 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" />
<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>
猜你喜欢
您可能感兴趣的文章:
- JS实现日期时间动态显示的方法
- 基于jQuey实现鼠标滑过变色(整行变色)
- js实现遍历含有input的table实例
- JavaScript中的return语句简单介绍
- 深入理解Java线程编程中的阻塞队列容器
- JS与jQuery遍历Table所有单元格内容的方法
- JavaScript的History API使搜索引擎抓取AJAX内容
- JavaScript给input的value赋值引发的关于基本类型值和引用类型值问题
- 小巧强大的jquery layer弹窗弹层插件
- 使用jQuery+EasyUI实现CheckBoxTree的级联选中特效
- win7下安装配置node.js+express开发环境
- 分享使用AngularJS创建应用的5个框架
- 如何利用AngularJS打造一款简单Web应用
- 使用CDN和AJAX加速WordPress中jQuery的加载
- 浅析jQuery移动开发中内联按钮和分组按钮的编写
- 使用jQuery在移动页面上添加按钮和给按钮添加图标
- jQuery mobile类库使用时加载导航历史的方法简介
- jQuery mobile转换url地址及获取url中目录部分的方法
- JavaScript原生xmlHttp与jquery的ajax方法json数据格式实例