js中怎样传值给form表单
2个回答
展开全部
<form name="f" action="1.htm" method="post">
<input type="text" name="s1" />
<input type="button" value="tijiao" onclick="javascript:document.f.action+='?str2=str2';document.f.submit();" />
</form>
不知道这样 你看得懂吗,简单说 就是用
document.TestPage.action="??"
更改 表单 TestPage 的 action 属性
<input type="text" name="s1" />
<input type="button" value="tijiao" onclick="javascript:document.f.action+='?str2=str2';document.f.submit();" />
</form>
不知道这样 你看得懂吗,简单说 就是用
document.TestPage.action="??"
更改 表单 TestPage 的 action 属性
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var f = document.createElement("form");
document.body.appendChild(f);
var i = document.createElement("input");
i.type = "hidden";
f.appendChild(i);
i.value = "5";
i.name = "price";
f.action = "aa.asp";
f.submit();
--------------------如何在两个html的网页间传递变量?--------
<!--第一个页面-->
<html>
<head>
<script>
var key;
function textcontent(x)
{
key=document.getElementById(x).value;
location.href="test.htm?"+key;
}
</script>
</head>
<body>
<input id=x value=""/>
<input type=button value="跳转到test.htm页面" onclick="javascript:textcontent('x');">
</body>
</html>
<!--第二个页面-->
<html>
<head>
<title>text.htm页面</title>
<script defer>
var url=window.document.location.search;
if(url!=null)
{
url=url.substring(1,url.length);
}
alert(url);
</script>
</head>
<body>
</body>
</html>
document.body.appendChild(f);
var i = document.createElement("input");
i.type = "hidden";
f.appendChild(i);
i.value = "5";
i.name = "price";
f.action = "aa.asp";
f.submit();
--------------------如何在两个html的网页间传递变量?--------
<!--第一个页面-->
<html>
<head>
<script>
var key;
function textcontent(x)
{
key=document.getElementById(x).value;
location.href="test.htm?"+key;
}
</script>
</head>
<body>
<input id=x value=""/>
<input type=button value="跳转到test.htm页面" onclick="javascript:textcontent('x');">
</body>
</html>
<!--第二个页面-->
<html>
<head>
<title>text.htm页面</title>
<script defer>
var url=window.document.location.search;
if(url!=null)
{
url=url.substring(1,url.length);
}
alert(url);
</script>
</head>
<body>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询