当鼠标移动到图像上时,jQuery鼠标没有被触发

前端之家收集整理的这篇文章主要介绍了当鼠标移动到图像上时,jQuery鼠标没有被触发前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当你在图像上进行mousedown时,稍微移动鼠标(mousemove)然后释放(mouseup),不会使用jQuery触发mouseup.

jsfiddle:http://jsfiddle.net/kVFTZ/

为什么是这样?如何在移动图像时使其工作?

最佳答案
很容易修复.添加event.preventDefault();你的mousedown功能.

jsFiddle example

$(document).on('mousedown',function(event) {
    event.preventDefault();
    $('#info').text('Now move the mouse and then release');
    $('#log').text('mouse down fired');
}).on('mouseup',function() {
    $('#log').text('mouse up fired');
});

原文链接:https://www.f2er.com/jquery/428148.html

猜你在找的jQuery相关文章