0

我在一个旧网站上遇到了这个问题。如何将 document.all 转换为 document.getElementById ?

谢谢

function _contsetValue(item,vl){

var _item=document.all._cnt_item[item];

_item.style.backgroundImage='url(' + skin_image[23].src + ')'
_item.style.color="#000000";
_item.innerHTML= (item+1) + " " + vl;

var _cnt=document.getElementById('_contbase');
if ( (item+1) > _cntxx){
    _cnt.scrollLeft=(65*(item));
    _cntxx+=7;
}
;
4

1 回答 1

0

document.all[ID]就像document.getElementById(ID)你想要的一样

于 2013-02-07T00:10:48.967 回答