var href = document.url;
href = decodeuri(href);
var otext1 = href.split(=)[1];
eg: a.html
local.href = 'www.aaa.com/index.php?a=1';
b.html
var href = document.url;
href = decodeuri(href);
var otext1 = href.split(=)[1];
//运用上面的代码,otext1 = 1;
版权声明:本文为博主原创文章,未经博主允许不得转载。