博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
属性只有一个值的这类 html 属性是怎么回事,该如何设置值;比如:checked = “checked” vs checked = true...
阅读量:5018 次
发布时间:2019-06-12

本文共 1096 字,大约阅读时间需要 3 分钟。

参考链接:

问:

1 What is the difference between the below two usages?2 3 document.getElementById('myRadio').checked = "checked";4 and5 6 document.getElementById('myRadio').checked = true;7 For me, both are behaving the same way. But, I am just curious to know why there exist two methods to do the same.8 9 Which one will be the ideal usage? I need to support IE7 and higher versions.
View Code

答:

1 document.getElementById('myRadio').checked is a boolean value. It should be true or false2 3 document.getElementById('myRadio').checked = "checked"; casts the string to a boolean, which is true.4 5 document.getElementById('myRadio').checked = true; just assigns true without casting.6 7 Use true as it is marginally more efficient and is more intention revealing to maintainers.
View Code

document.getElementById('myRadio')。checked是一个布尔值。 这应该是真的或假的

document.getElementById('myRadio')。checked =“checked”; 将字符串转换为布尔值,这是正确的。

document.getElementById('myRadio')。checked = true; 只是分配true而不投射。

使用true,因为它的效率稍微高一点,而且更有意向维护者展示。

所以设置这种单属性的值为 true 或 false 就对了

转载于:https://www.cnblogs.com/ShawnYang/p/8315255.html

你可能感兴趣的文章
项目中操作redis改brpop阻塞模式为订阅模式的实现-java实习笔记二
查看>>
PHP中各种Hash算法性能比较
查看>>
对象深度克隆
查看>>
12动态规划运用实例
查看>>
规则9 减少DNS查找
查看>>
web 富文本编辑器总结
查看>>
限制某个进程只能在某个CPU上运行
查看>>
宋体、实例-Java中的单例模式-by小雨
查看>>
AutoMapper转换规则
查看>>
linux内核分析系列--百度
查看>>
SDN:软件定义网络
查看>>
GitHub具体教程
查看>>
写时拷贝(Copy On Write)方案详解
查看>>
CentOS 從 PHP 5.1.X 升級到 PHP 5.3
查看>>
MVC
查看>>
第二百三十五节,Bootstrap栅格系统
查看>>
《Linux内核精髓:精通Linux内核必会的75个绝技》一HACK #21FUSE
查看>>
SQLite剖析之编程接口详解
查看>>
Elasticsearch最佳实践之分片使用优化
查看>>
Java入门(6)
查看>>