我正在尝试用 javascript 简化(或改进)我的代码。
我有
task.prototype.init = function (){
//for loop and create bunch of links
var size=document.createElement('a');
size.innerHTML='test'
size.id=value;
size.onclick=this.changeSize.bind(this);
body.appendChild(size);
}
task.prototype.changeSize = function(e){
for(var i=0; i<e.target.parentNode.childNodes.length; i++){
e.target.parentNode.childNodes[i].style.backgroundColor='white';
}
e.target.style.backgroundColor='red';
return false;
}
我的 html 就像
<div>
<a href='#' id='1'>test</a>
<a href='#' id='2'>test</a>
<a href='#' id='3'>test</a>
<div>
我的代码会将所有<a>
链接的背景颜色更改为白色,并为选定<a>
的标签提供红色背景。它适合我的需要,但我觉得它在我的 changeSize 函数中可能更漂亮。
有没有更好的写法?非常感谢!