请教下sf中朋友们,下面这段代码中,colors有三个变量,分别是三种颜色。
那么请问下,在chrome中运行,colors[0]为0则运行wihte,难道不会改变html文件中id为colors代码的颜色吗?
var colors = new Array('wihte',
'black',
'custom')
var el = document.getElementById('colors');
el.textContent = colors[0];