如何从jsp获取按钮值到servlet
在jsp中:
<input type=button name=bt value=gi onclick="document.frm.submit();"></input>
在servlet中:
String gi =request.getParameter("bt"); System.out.print("button value" +gi);
导致= NULL
谢谢
在表单中取一个隐藏变量并像这样使用它.
<form name="frm" method="post" action=""> <input type="hidden" name="hdnbt" /> <input type="button" name="bt" value="gi" onclick="{document.frm.hdnbt.value=this.value;document.frm.submit();}" /> </form>
现在,在servlet中,
String gi =request.getParameter("hdnbt"); System.out.print("button value" +gi);
翻译自:https://stackoverflow.com/questions/2912371/how-to-get-the-button-value-from-jsp-to-servlet