Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/zhky/src/commit/01812443078d5c7fd9f904418192e37ab3380f9a/out/artifacts/zhyw_war_exploded/css/lightBody.htc You should set ROOT_URL correctly, otherwise the web may not work correctly.
zhky/out/artifacts/zhyw_war_exploded/css/lightBody.htc

25 lines
494 B

<public:component>
<public:attach event="onmouseover" onevent="itemOnMouseOver()" />
<public:attach event="onmouseout" onevent="itemOnMouseOut()" />
<script language="javascript">
function itemOnMouseOver(){
with (element) {
with (style) {
//backgroundColor = "highlight"
backgroundColor = "#E4E8EF"
//color = "highlighttext"
}
}
}
function itemOnMouseOut(){
with (element) {
with (style) {
backgroundColor = ""
color = ""
}
}
}
</script>
</public:component>