通常,通过使CSS属性驼峰命名为caseCase而不使用任何破折号,可以将CSS属性转换为Javascript。如此
background-color成为
backgroundColor。
function setColor(element, color){ element.style.backgroundColor = color;}// where el is the concerned elementvar el = document.getElementById('elementId');setColor(el, 'green');
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)