//引入Jquery
";
$("body").append(tooltip);
$("#tooltip"). css({ "top": (e.pageY y) "px", "left": (e.pageX x) "px" }).show("fast");
}).mouseout(function ( ) { //當滑鼠指標從元素移開時
this.title = this.myTitle;
$("#tooltip").remove();
}).mousemove(function (e ) { //當滑鼠指標從元素上移動
$("#tooltip").css({ "top": (e.pageY y) "px", "left": (e.pageX x) "px" });
});
});
//html程式碼