我认为这样的事情,但我不想使用按钮提交,我会通过点击弹簧消息提交。这有可能吗?
<spring:url value="/admin/messages" var="messagesUrl" htmlEscape="true"/>
<form action="${messagesUrl}" method="POST" class="new-message">
<input type="hidden" name="messageFromDashboard" value="true">
<spring:message code="${newMessage}">
<input type="submit" value="submit"></spring:message>
</form>
答案 0 :(得分:1)
也许this会有所帮助。为什么你不想使用提交按钮?如果你只是想看它像标签/链接,只需使用类似于http://jsfiddle.net/adardesign/5vHGc/
的cssHTML:
<button> your button that looks like a link</button>
的CSS:
button {
background:none!important;
border:none;
padding:0!important;
/*optional*/
font-family:arial,sans-serif; /*input has OS specific font-family*/
color:#069;
text-decoration:underline;
cursor:pointer;
}