日期:2014-05-17 浏览次数:20717 次
<form action="要跳转到的页面" method="post">
<input type="text" name="名称"/>
<input type="submit" value="提交"/>
</form>
request.getParameter("名称")
<input type="button" onclick="go(参数1,参数2)">
function go(a,b){
window.location.href='新页面?参数1=a&参数2=b';
}