我可以只显示带有文字的<input>
标签,而不是按钮吗?我该怎么做?
答案 0 :(得分:9)
你可以使用CSS:
<input style="vertical-align:bottom;overflow:visible; font-size:1em; display:inline; margin:0; padding:0; border:0; border-bottom:1px solid blue; color:blue; cursor:pointer;" name="Submit" type="submit" value="Submit">
答案 1 :(得分:4)
如果我的问题正确,你想显示一个&lt; input type =“button”value =“Foobar”/&gt;只有文字而没有按钮式。
<input type="button" value="Foobar" style="border: none; background: none; padding: 0;" />
答案 2 :(得分:3)
没有按钮的按钮只是一个链接。
<a href="#" onclick="do stuff;">My Text</a>