$(function(){
$(document).mousemove(function(e){
//注意单个css("",'');
//多个$("#img").css({"left":'',"top":''});
$("#img").css({"left":e.pageX,"top":e.pageY});
});//注意图片必须设为position
转载于:https://www.cnblogs.com/my-blocg/p/5915985.html