火狐浏览器中的鼠标移动
如何在 Firefox 中实现 onmousemove? 我可以在 IE7 中正常运行,但在 Firefox 中没有弹出警报。 是否不支持或采取不同的方式?
<esri:Map ID="Map1" runat="server" MapResourceManager="MapResourceManager1"
Height="100%" Width="100%" VirtualDirectory=""
PrimaryMapResource="ESRI_Imagery_World_2D" Extent="-130,37,-117,46"
onmousemove="alert()" >
</esri:Map>
How do you implement onmousemove in Firefox? I have it working in IE7 but no alert
pops in Firefox. Is is not supported or done differently?
<esri:Map ID="Map1" runat="server" MapResourceManager="MapResourceManager1"
Height="100%" Width="100%" VirtualDirectory=""
PrimaryMapResource="ESRI_Imagery_World_2D" Extent="-130,37,-117,46"
onmousemove="alert()" >
</esri:Map>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题在于你需要在alert()中放入一些东西,例如:
我刚刚尝试过这个并且它在FF中有效:
I thinkk the problem is that you need to put something inside your alert(), such as:
I just tried this and it worked in FF: