[typing]jQuery官方文档[/typing]
As of jQuery 1.6, the .attr()
method returns undefined for attributes that have not been set. In addition, .attr()
should not be used on plain objects, arrays, the window, or the document. To retrieve and change DOM properties, use the .prop()
method.
[typing]jQuery版本变化[/typing]
v1.6以后attr(‘checked’)
就返回checked
和undefined
,
v1.6以前返回true
和false
,
v1.6以后可以使用is(':checked')
或者.prop('checked')
来返回true
和false
呵呵
呵呵
找了很久 414
[…] 前一篇我们介绍了log4net写日志到文件的方法,具体可以参考。 配置log4net写日志到文件,这一篇我们继续介绍log4net写日志到数据库的方法。 […]