问题描述
当我把鼠标放在图象上移动时文本内容显示鼠标的位置,并随鼠标的改变而改变!这怎么实现?请高手赐教!
解决方案
解决方案二:
onmousemove=function(){document.all["imgID"].title="left="+event.left+"top="+event.top;}
解决方案三:
我已解决了``谢谢哈!
解决方案四:
<html><head><script>functionaa(){document.all["imgID"].title="left="+event.clientX+"top="+event.clientY;}</script></head><body><imgsrc="02.jpg"id="imgID"onmousemove="aa();"/></body></html>你可以自己做个图层显示当前鼠标位置
解决方案五:
顶下
解决方案六:
引用1楼xiaohutushen的回复:
onmousemove=function(){document.all["imgID"].title="left="+event.left+"top="+event.top;}
时间: 2024-12-11 08:30:24