相当于重置按钮的链接?
我想要一个相当于按钮 type="reset" 的“删除链接”,但不是按钮,而是链接。就像 YouTube 评论框一样。这怎么可能?
I want a 'delete link' equivalent of the button type="reset", but not a button, a link. Just like on the youtube comment box. How is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用普通按钮
,但将其样式设置为看起来像普通文本:
JSFiddle 示例
You can use a normal button
<input type="reset" value="Reset" class="textbutton">
, but style it to look like normal text:JSFiddle example
如果您希望它重置带有链接的表单,请将 onClick 事件绑定到该链接并让它调用表单对象上的 reset() 方法。
If you want it to reset a form with a link, bind an onClick event to the link and have it call the reset() method on the form object.
您可以通过 Javascript 调用 HTML 表单的
reset
方法:You can call the
reset
method of a HTML form via Javascript:像 YouTube 一样尝试一下::)
Try this like youtube: :)