您的位置:首页 > Web前端 > HTML

html 页面之间跳转和传值

2013-06-05 14:28 471 查看


从a.html 跳转到b.html 并吧 a.html 的值传入b.html

[b]a.html[/b]
<html>
<head>
<title> New Document </title>
<script>
function   to (){
var  getval =document.getElementById("cc").value;
document.location.href("b.html?cc="+getval);
}
</script>
</head>
<body>
<input type="text" id ="cc" > <input type="button"  value="a"  onclick="to()" >
</body>
</html>


b.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<script>
var thisURL = document.URL;
var  getval =thisURL.split('?')[1];
var showval= getval.split("=")[1];
function  showvalf(){
alert(showval);
document.getElementById('ee').value=showval;
}
</script>
</head>
<body onload="showvalf()">
<input type="text"  id ="ee" />
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: