path.makeUrlAbsolute() 把相对URL转化为绝对URL
把相对URL转化为绝对URL的方法。这个函数返回一个字符串,绝对URL。
relUrl:相对网址。类型:字符串。
absUrl:绝对网址。类型:字符串。
<
Meta charset="utf-8">
<
Meta name="viewport" content="width=device-width,initial-scale=1">
jQuery.mobile.path.makeUrlAbsolute demo
<div data-role="page">
<div data-role="content">
The absoulte URL used is http://foo.com/a/b/c/test.html
_29@
$(document).ready(function() {
$( ".myButton" ).on( "click",function() {
var absUrl = $.mobile.path.makeUrlAbsolute( $( this ).attr( "value" ),"http://foo.com/a/b/c/test.html" );
$( "#myResult" ).html( absUrl );
})
});