摘要:后来在参考到了答案总结起来就是这样在不使用框架处理的情况下,给标签如下几种写法,都会使按钮不可点击任意字符串要让不可点击的按钮,回到点击状态有两种方式通过移除属性通过赋值参考资料链接链接
在开发公司的一个内部系统时,用到了AntDesign框架。我要让Button在可点击和不可点击两种状态之间切换。
结果我的Button标签确实不可点击了,但是eslint却报错如下:
error Value must be omitted for boolean attributes react/jsx-boolean-value
后来把代码给成这样:
eslint报错就消失了。
后来在Stack Overflow参考到了答案:
2.5.2 Boolean attributes A number of attributes are boolean attributes. The presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value. If the attribute is present, its value must either be the empty string or a value that is an ASCII case-insensitive match for the attribute"s canonical name, with no leading or trailing whitespace. The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to be omitted altogether.
*Note that this means that
总结起来就是这样:
在不使用框架处理的情况下,给Button标签如下几种写法,都会使按钮不可点击:
要让不可点击的按钮,回到点击状态有两种方式:
通过JS移除disabled属性
通过JS赋值:document.getElementById("Button").disabled = true;
参考资料:
链接1
链接2
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/107365.html
摘要:六字符编码通过明确声明字符编码,能够确保浏览器快速并容易的判断页面内容的渲染方式。十一减少标签的数量编写代码时,尽量避免多余的父元素。未完待续编写灵活稳定高质量的代码的规范阅读更多 一、唯一定律 无论有多少人共同参与同一项目,一定要确保每一行代码都像是唯一个人编写的。 二、HTML 2.1 语法 (1)用两个空格来代替制表符(tab) -- 这是唯一能保证在所有环境下获得一致展现的方法...
流行框架 简介 angularjs是一款非常优秀的前端高级JS框架,由谷歌团队开发维护,能够快速构建单页web应用,化繁为简 无论是angularjs还是jQuery都是用原生JS封装的 库:对代码进行封装,调用封装的方法,简化操作 传统方式是用get方式获取元素,然后点方法 jQuery库实现了对获取方式的封装,对方法的封装 框架:提供代码书写规则,按照规则去写代码,框架会帮我们实现响应的功能...
阅读 879·2021-11-08 13:22
阅读 2821·2021-09-29 09:45
阅读 2789·2021-09-09 11:52
阅读 2236·2019-08-30 13:20
阅读 3717·2019-08-29 13:28
阅读 1332·2019-08-29 12:32
阅读 2676·2019-08-29 11:10
阅读 1616·2019-08-26 13:34