ODI安装好后,启代理时报错了,请各位大虾指点一下!

ODI安装好后,启代理时报错了,请各位大虾指点一下!,第1张

安装的时候是否有配置独立代理?如果没有,需要安装,安装完以后,会自动注册到主资料档案库的。

或者在安装完成后,参考这个文档

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'

}

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/7209325.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存