jqueryfunctionchrome浏览器不支持 onmouseleave事件的解决
题记:写这篇博客要主是加深自己对jqueryfunction的认识和总结实现算法时的一些验经和训教,如果有错误请指出,万分感谢。
之前始终没测试chrome ,今天事件不太多,就测试了一下,发现给div加的 onmouseleave事件在chrome 中不起效果;
后来发现处理办法用jquery的方式实现
例如
<div id=‘aaa' class='divfloat' " onmouseleave='$(this).slideUp();' style='background-color: White; width:553px; position: absolute;left:" + (event.offset().left - 420) + "px;top:"
+ (event.offset().top + 25) + "px;'>aaaaaa</div>");
把 onmouseleave='$(this).slideUp();'写到div里chrome用不了,修改在ready的时候 $("#aaa“).mouseleave(function click() { $(this).slideUp(); });,就ok了。
问题处理,分享~
文章结束给大家分享下程序员的一些笑话语录:
看到有人回帖“不顶不是中国人”,他的本意是想让帖子沉了。
---------------------------------
原创文章 By
jquery和function
---------------------------------