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/0120abecad3105ba09112d9343901f636686357d/web/css/activeImg.htc You should set ROOT_URL correctly, otherwise the web may not work correctly.
zhky/web/css/activeImg.htc

17 lines
347 B

<public:component>
<public:attach event="onmouseover" onevent="itemOnMouseOver()" />
<public:attach event="onmouseout" onevent="itemOnMouseOut()" />
<script language="javascript">
function itemOnMouseOver(){
with (element) {
src = overimg;
}
}
function itemOnMouseOut(){
with (element) {
src = outimg;
}
}
</script>
</public:component>