我正在尝试将值从一个html页面传递到另一个html页面,但我收到了一些错误..
下面是我的html页面一个代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function first() {
location.href = "onclick2.html";
}
</script>
</head>
<body>
<button onclick="first()" >Home</button>
<form action="onclick2.html" method="post">
<input type="text" name="sender" />
<input type="submit" value="send"/>
</form>
</body>
</html>
下面是我的html第2页代码
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function first() {
location.href = "onclick.html";
}
</script>
</head>
<body>
<button onclick="first()">Home2</button>
<form action="onclick.html" method="get">
<input type="text" name="reciver" />
</body>
答案 0 :(得分:0)
您可以在网址中传递值并按以下方式传输:
location.href = "http://www.domainname.com/login.html?FirstName=admin&LastName=admin"