我有一个锚标记,包含一个按钮,我想在单击按钮时将其重定向到弹簧控制器。以下代码正在使用chrome浏览器,但它在IE中无效。你能帮帮我吗?
<spring:url value="/auth/userhome" var="homepage" />
<a href="${homepage}">
<button type="button" class="btn btn-primary cancel">
<spring:message code="button.cancel" />
</button> </a>
答案 0 :(得分:0)
您可以查看此主题:Button inside of anchor link works in Firefox but not in Internet Explorer?
这将解决您的问题:
<input type="button" onclick="javascript: location.href = 'http://www.stackoverflow.com';"/>