$(document).on('mousedown', function(e) { var mousedown = { x: e.pageX } $(document).on('mousemove', function(e) { var mousemove = { x: e.pageX } }) }) $(document).on('mouseup', function(){ $(document).off(); })
添加回答
举报
0/150
提交
取消