body中:
<img src="../images/icon_view.gif" bigimg="../img.jpg" title="查看預覽圖" class="imgtip" />
<script type="text/javascript"> //放大圖片 $(function () { var x = 10; var y = 20; $(".imgtip").mouseover(function (e) { this.myTitle = this.title; this.title = ""; var imgtip = "<div id='imgtip'><img src='" + $(this).attr("bigimg") + "' width='300' alt='預覽圖'/><\/div>"; //創建 div 元素 $("body").append(imgtip); //把它追加到文檔中 $("#imgtip") .css({ "top": (e.pageY + y) + "px", "left": (e.pageX + x) + "px" }).show("fast"); //設置x坐標和y坐標,並且顯示 }).mouseout(function () { this.title = this.myTitle; $("#imgtip").remove(); //移除 }).mousemove(function (e) { $("#imgtip") .css({ "top": (e.pageY + y) + "px", "left": (e.pageX + x) + "px" }); }); }); </script>