2007年8月23日木曜日

ZK:onMouseOver,onMouseOutイベント

マウスカーソルがボタンの上に来たらボタンの文字を赤くし、カーソルがボタンから外れたらボタンの文字を黒くする。


<window title="Customizable Tooltips" border="normal" width="360px">
<script type="text/JavaScript" >
function red(el){
el.style.color = "red";
}
function black(el){
el.style.color = "black";
}
</script>
<button label="Info"
action="onMouseOver:red(this);onMouseOut:black(this)">
</button>
</window>

1 件のコメント:

nondescript さんのコメント...

good solution!!
I'm trying to solve this kind of problem for a while...
your solution is briefly and simple to understand
thanks a lot!!!!


by the way, I'm a beginner of ZK from Taiwan
hope this message won't disturb you
nice you meet you :)