码迷,mamicode.com
首页 > Web开发 > 详细

两个html页面之间传递参数

时间:2015-08-04 22:57:28      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

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;

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

两个html页面之间传递参数

标签:

原文地址:http://blog.csdn.net/u011011025/article/details/47283349

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!