请问一个关于改变状态栏显示的js事件
如果网页内是超链接:<a href="javascript:update()" onmouseover="window.status='hhhahahhahah';return true;"
onmouseout="window.status=''">
当鼠标经过时,改变网页状态栏的事件就能正常显示,
================================================
同样的道理用在图片热点上,却显示的还是href=""里的内容,return true也加上了也不行,请问怎么解决呀?谢谢!
<map name="Map" id="Map">
<area shape="rect" coords="12,18,122,95" href="javascript:update('service')"
onmouseover="window.status='service department'; return true;"/>
</map>
<img src="000.jpg" width="430" height="603" border="0" usemap="#Map" />