欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

两个html页面之间传递参数_html/css_WEB-ITnose

程序员文章站 2022-06-09 09:56:46
...
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;

版权声明:本文为博主原创文章,未经博主允许不得转载。