vue中使用js控制button的disabled属性
<button ref="btn">按钮</button>最好不要使用this.$refs.btn.setAttribute('disabled',true);禁用按钮因为这个的效果和this.$refs.btn.setAttribute('disabled',false);是一样的,都禁用按钮了,因为true或者false被转化为了字符串,而这个字符串基本等效于...
·
<button ref="btn">按钮</button>
最好不要使用this.$refs.btn.setAttribute('disabled',true);禁用按钮
因为这个的效果和this.$refs.btn.setAttribute('disabled',false);是一样的,都禁用按钮了,因为true或者false被转化为了字符串,而这个字符串基本等效于true,也就是都是禁用的写法
而若是改为this.$refs.btn.disabled = true(禁用按钮),this.$refs.btn.disabled = false(可用按钮)就能满足正常的需求了
不过非要使用setAttribute也不是不行,要取消禁用按钮就要配合removeAttribute使用了:
this.$refs.btn.removeAttribute('disabled');
vue不太建议使用dom,所以当然在标签中写啦, :disabled=flag(注意flag不要加引号,flag在data中设为Boolean值)
更多推荐
已为社区贡献2条内容
所有评论(0)