我正在尝试传递一个网址参数。我使用以下jQuery代码解析URL:
$(document).ready(function () {
var url = 'http://sitename.com/Manual/module_1_3.htm';
//Create a new link with the url as its href:
var a = $('<a>', {
href: url
});
var sResult = '<b>Protocol:</b> ' + a.prop('protocol') + '<br/>' + '<b>Host name: </b>' + a.prop('hostname') + '<br/>'
+ '<b>Path: </b>' + a.prop('pathname') + '<br/>'
$('span').html(sResult);
});
输出结果为:
Protocol: https:
Host: www.site-name.com
Path: /Manual/module_1_3.htm
我的问题是如何将路径传递到其他页面 同一个域
谢谢