this.imagePreview = function(){
xOffset = 10;
yOffset = 30;
$(".prebtn").hover(function(e){
this.t = this.title;
this.title = "";
var c = (this.t != "") ? "<br/>" + this.t : "";//获取图片标题,可省略
var imgsrc=$(this).find("img").attr("src");
$("body").append("<p id=‘preview‘><img src=‘"+imgsrc+"‘ alt=‘Image preview‘ /></p>");
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#preview").remove();
});
$(".prebtn").mousemove(function(e){
$("#preview")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};
$(function(){
//鼠标经过预览图片
imagePreview();
});
原文:http://www.cnblogs.com/niwalala/p/5112778.html