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 规定属性的值。
用js中的document.getElementById("#idname")来获取指定id的节点。idname是指定的id名。如:var book1 = document.getElementById("#1111")
那么便利book1就代表
<book id="1111"> <name>西游记</name> <author>吴承恩</author></book>
这个book节点了。