HTML按钮onclick链接无法正常工作

时间:2014-01-23 14:21:32

标签: javascript html jsp jstl

我在JSP页面中使用了以下按钮,但它给了我错误并拒绝在href中打开页面,有人可以告诉我这里缺少什么吗?

<button type="button" class="btn" onclick="location.href='<%=request.getContextPath()%>/inventory/edit-product/?productid='${productinfo.id};">Edit Product</button>

感谢您的时间

1 个答案:

答案 0 :(得分:1)

你错放了一个撇号。它应该是

 <button type="button" class="btn" onclick="location.href='<%=request.getContextPath()%>/inventory/edit-product/?productid=${productinfo.id}';">Edit Product</button>