JS设计模式:桥接模式

前端之家收集整理的这篇文章主要介绍了JS设计模式:桥接模式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
function changeColor(dom,color,bg) {
    dom.style.color = color;
    dom.style.background = bg;
}

var spans = document.getElementsByTagName('span');
spans[0].onmouSEOver = function() {
changeColor(this,'red','#ddd');
}

spans[0].onmouSEOut = function() {
changeColor(this,'#333','#f5f5f5');
}

spans[1].onmouSEOver = function() {
changeColor(this.getElementsByTagName('strong')[0],'#ddd');
}

解耦,提取共同点

原文链接:https://www.f2er.com/note/421708.html

猜你在找的程序笔记相关文章