首頁  >  文章  >  web前端  >  jquery提示效果實例分析_jquery

jquery提示效果實例分析_jquery

WBOY
WBOY原創
2016-05-16 16:30:291238瀏覽

本文實例講述了jquery提示效果的用法。分享給大家供大家參考。具體實作方法如下:

複製程式碼 程式碼如下:

提示1.


提示2.


自備提示1.


自備提示2.

$(function(){
    $(".tooltip").mouseenter(function(e){
 this.mytitle=this.title
 this.title=""
 var a="

" this.mytitle "
"
 $("body").append(a);
 $("div").css({
     "top": (e.pageY y) "px",
     "left": (e.pageX  x) "px"
 }).show("fast")
    }).mouseout(function(){
 this.title= this.mytitle;
 $("div").remove();
     });
})

心得體會:

不要在p標籤下追加div元素,會出現一個大的偏差值!

原來! this和$("this")是有所不同,如果上文this.title改寫成$("this").attr("title")會導致下面的mouseout事件無法訪問保存下來的title。

希望本文所述對大家的jQuery程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn