或者在安装完成后,参考这个文档
http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi_11g/setup_odi_agent/setup_odi_agent.htm
你其中类似:
oDiv1.style.backgroundColor:red写错啦, 应该是
oDiv1.style.backgroundColor='red'所以你上面的代码,其他类似的地方都应该改掉:
window.onload=function(){var oShow=document.getElementById('show_box')
var aLi=oShow.getElementsByTagName('li')
var aDiv=oShow.getElementsByTagName('div')
var oDiv1=document.getElementById('t1')
var oDiv2=document.getElementById('t2')
var oDiv3=document.getElementById('t3')
var oDiv4=document.getElementById('t4')
var index=0
for(var i=0i<aLi.lengthi++)
{
console.log(-1)
aDiv[i].index=i
aLi[i].onclick=function(){
if(index==0){
console.log(0)
oDiv1.style.backgroundColor='red'
}
if(index==1){
console.log(1)
oDiv1.style.backgroundColor='yellow'
}
if(index==2){
console.log(2)
oDiv1.style.backgroundColor='blue'
}
if(index==3){
console.log(3)
oDiv1.style.backgroundColor='black'
}
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)