假设你这个页面是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中如何获取表单的数据、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)