$("span[userid=1]").bind("click",function(){
del(this)
})
添加属性:
$("span[userid=1]").attr("属性名","属性值")
添加属性用setAttribute()方法,可以传入两个参数,第一个是属性名称,第二个是要设置的属性值
var li = document.getElementsByTagName('li')[0]//设置 li 属性,如 data-falg,设置为true
li.setAttribute("data-falg", "true")
也可以获取属性用getAttribute(),传入一个参数,是想获取的属性名称,返回的是该属性的值
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)