在jsp中本页面如何获取本页面表单里面的值

在jsp中本页面如何获取本页面表单里面的值,第1张

假设你这个页面是testjsp

那么<form action="testjsp" method="post">

也就是把action中的内容写为本页面的路径就行啦

documentgetElementById('b')value

或者

form1avalue

在页面间传递,<script>function goURL(theform){  var gourl = "456html";

gourl +="p="+theformusernamevalue+"|"+theformemailvalue; theformaction = gourl; return true;

}</script><form method=get onsubnit="return goURL(this);

"><input type=text name=username><input type=text name=email><input type=button value=提交

onclick="goURL(thisform)"></form> 在456html页面用脚本叫URL问号后面的值分割后,再用"|"分割就得到username和email<script>function init(){   var url= documentlocationhrefsplit("")

temp =urlsplit("|");

alert("UserName="+temp[0]+"\n"+"Email="+temp[1]); }</script><body onload=init()> </body>

以上就是关于在jsp中本页面如何获取本页面表单里面的值全部的内容,包括:在jsp中本页面如何获取本页面表单里面的值、html中如何获取表单的数据、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10089528.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存