js:属性操作

设置属性:

var p = document.getElemmetByTagName("p")[0];

p.setAttribute("title","段落");

p.setAttribute("class","pclass");//设置class,相当于添加了样式

获取属性:

console.log(p.getAttribute("title");

console.log(p.getAttribute("class");

移除属性:

p.removeAttribute("title");

p.removeAttibute("class");

你可能感兴趣的:(js:属性操作)