求大神,我的这个html点击STOP按钮为何没有显示呢?

求大神,我的这个html点击STOP按钮为何没有显示呢?,第1张

你的<input type="button" value="STOP" onclick("stopCount()")> 写错了,应该是

<input type="button" value="STOP" onclick="stopCount()">

onMouseOver="stop()" onMouseOut="start()"

这个是鼠标移到标记上就停止了 移除了就又继续

如果你想点击的话就是 onmousedown="stop()" onmouseup="start()"

一般都是用鼠标的移入移除 很少有用鼠标左键落下事件的

-------------------------------------------------------------------

//你要的是这样的

<marquee direction=left behavior=alternate scrollamount=6 onmousedown="stop()" onmouseup="start()"><center><img src=F:\yyyyyyyyyyyyyyyyyyyyy副本.jpg width=5000 height=293></marquee>

请使用js

IE下用document.execCommand("stop")

FF下用window.stop()

详细 可以百度搜索"RE1D"找我


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7081346.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-01
下一篇 2023-04-01

发表评论

登录后才能评论

评论列表(0条)

保存