JS自定义属性

来源:互联网 发布:政府数据开放平台 编辑:程序博客网 时间:2024/05/17 22:18
<!DOCTYPE html><html><head><meta charset="UTF-8"><title></title><style>li{list-style: none;width: 113px;height: 140px;background-image: url(img/normal.png);float: left;margin-right: 20px;}</style><script>window.onload=function(){var ali=document.getElementsByTagName("li");//var off=true;只能控制一组for(var i=0;i<=ali.length;i++){ali[i].off=true;ali[i].onclick=function(){if(this.off){this.style.background="url(img/normal.png)";this.off=false;}else{this.style.background="url(img/active.png)";this.off=true;}}}}</script></head><body><ul><li></li><li></li><li></li></ul></body></html>

原创粉丝点击