我在JSP页面中使用了以下按钮,但它给了我错误并拒绝在href中打开页面,有人可以告诉我这里缺少什么吗?
<button type="button" class="btn" onclick="location.href='<%=request.getContextPath()%>/inventory/edit-product/?productid='${productinfo.id};">Edit Product</button>
感谢您的时间
答案 0 :(得分:1)
你错放了一个撇号。它应该是
<button type="button" class="btn" onclick="location.href='<%=request.getContextPath()%>/inventory/edit-product/?productid=${productinfo.id}';">Edit Product</button>