html 表单action
如何将1个html的表单中的值传递给另外一个页面?比如说<formaction="Read.htm"method='POST'><inputname="postparam...
如何将1个html的表单中的值传递给另外一个页面?
比如说
<form action="Read.htm" method='POST'>
<input name="postparameter" type="text" />
<input type="submit" value="登录">
</form>
我的Read.html应该怎么写呢? 展开
比如说
<form action="Read.htm" method='POST'>
<input name="postparameter" type="text" />
<input type="submit" value="登录">
</form>
我的Read.html应该怎么写呢? 展开
展开全部
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript">
var no = location.href;
var n1 = no.length;//地址的总长度
var n2 = no.indexOf("=");//取得=号的位置
var na = no.substr(n2+1, n1);//从=号后面的内容
var loc = location.href;
document.write("你提交的数据:"+na);
</script>
</head>
<body>
</body>
</html>
<head runat="server">
<title>无标题页</title>
<script language="javascript">
var no = location.href;
var n1 = no.length;//地址的总长度
var n2 = no.indexOf("=");//取得=号的位置
var na = no.substr(n2+1, n1);//从=号后面的内容
var loc = location.href;
document.write("你提交的数据:"+na);
</script>
</head>
<body>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询