jsp页面中点击按钮跳转页面的同时如何传参,最好是js格式的,不想用servlet等形式,接收页面如何获取参数
2个回答
展开全部
function showNews(n) {
var form = document.getElementById("news");
form.action = "showDetail!getMenuNames.action?DetailID=" + n;
form.submit();
}
<form id="news" method="post">
<input type="button" value="提交" onclick="showNews(n)">
</form>
带参数调整
或直接
<a href="showDetail!getMenuNames.action?参数名=参数值">
var form = document.getElementById("news");
form.action = "showDetail!getMenuNames.action?DetailID=" + n;
form.submit();
}
<form id="news" method="post">
<input type="button" value="提交" onclick="showNews(n)">
</form>
带参数调整
或直接
<a href="showDetail!getMenuNames.action?参数名=参数值">
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询