当鼠标移动到select选择option的时候(在ie和firefox的时候), 它会自动收缩掉,然而这并不是我想要 的! 演示 :http://runjs.cn/detail/zpubcpxn 代码如下:http://runjs.cn/code/zpubcpxn
'mouseleave':function(e){ var e=e||window.event; if($(e.target).parents('#evaluation').length) {//判断当前dom是否在事件的dom中,如果在不向下执行, option 丢失mouseleave事件原因未知 return false; } $('#evaluation').css('right','-210px'); console.log("出去了"); // e.preventDefault(); // e.stopPropagation(); } 补充:option不支持mouseenter事件。。。https://msdn.microsoft.com/en...
补充:option不支持mouseenter事件。。。
https://msdn.microsoft.com/en...