在class属性中加入disabled 对按钮reset来说 还是不能重置了呀?
<form role="form">
<input type="text" class="form-control" placeholder="input something">
<button type="reset" class="btn disabled" >reset</button>
<br>
<a class="btn disabled" target="_blank" href="https://www.baidu.com/">去百度</a>
</form>
这样的话 还是可以禁用掉的 , 也就是我在input里输入了东西,点击reset是没有效果的,这不是和他说的 在class中加入disabled不能禁止默认行为 只能通过属性disabled设置 矛盾吗?
以上代码中,reset按钮不能充值input里面的内容 a标签也不能完成打开百度页面的功能, 这是不是说:。disabled是禁止掉默认行为的呢?