这是文本
</div>
javascript DOM节点有多种类型,我们常用的有(对应上述html片段):
元素节点 [div]
属性节点 [class、id]
文本节点 [这是文本]
这写的有点太乱了吧,js和jQuery结合?!!?js这样写一句话就可以
document.getElementsByTagName("input")[0].setAttribute("disabled", "disabled")
jQuery这样一句话就可以
$("input").attr("disabled","disabled")
jQuery attr() 方法设置或返回被选元素的属性值。
获取属性值语法
$(selector).attr(attribute)
参数描述
attribute规定要获取其值的属性。
设置属性
设置被选元素的属性和值。
语法
$(selector).attr(attribute,value)
参数 描述
attribute规定属性的名称。
value 规定属性的值。