/* 友好tips */ //插件主题 $.fn.extend({ showTitle: function() { $("#showTitleBox").remove();//清除原有的层 $('
').appendTo('body'); var d = $("#showTitleBox"); this.bind({ mouseover: function() { // if ($("#showTitleBox")) { // $('
').appendTo('body'); // } else { // d = $("#showTitleBox"); // } var of = $(this).offset(); var title = $(this).attr("title"); //定义位置 d.css({ position:'absolute', top: of.top + $(this).height() + "px", left: $(this).width() / 2 + of.left + "px", border:'#666666 solid 1px', 'background-color':'#FFFFFF', 'color':'#336600', padding:'5px' }).text($(this).attr("title")); //显示 d.animate({opacity: "show"}, "slow"); }, mouseout: function() { //鼠标一走隐藏 d.animate({opacity: "hide"}, "fast"); } }); } });