我有这个html:
@H_301_2@<form id="REVIEW" method="post" action="/SortReviews">
<fieldset class="sort">
<input type="submit" value="$ratingLine"/>
</fieldset>
</form>
我想给提交按钮一些css,所以它看起来像一个链接.
@H_301_2@{ background: none; border: none; color: blue; text-decoration: underline; cursor: pointer; }我该怎么做?
解决方法
@H_301_2@<style type="text/css">
form input[type="submit"]{
background: none;
border: none;
color: blue;
text-decoration: underline;
cursor: pointer;
}
</style>
这不是你要找的吗?
如上所述,另一个选项是使用javascript提交锚点元素的表单onclick:
@H_301_2@<a href="#" onclick="document.review.submit()">submit</a>你的表单有一个属性:name =“review”