2012-12-13 42 views
1

我正在使用jQuery在我的jsp中創建彈出工具提示。有一個表在每一行中都有不同的超鏈接。當用戶將鼠標懸停在超鏈接上時,我希望顯示工具提示,當用戶懸停時,我需要它逐漸消失。jQuery代碼工作在IE瀏覽器,但不是在Firefox上

我能夠在IE中使用下面的代碼來實現這一點,但是當在FF上嘗試相同的頁面時,它顯示出不同的行爲。 它實際上是在頁面上的其他地方發佈工具提示的內容,而不是在工具提示框內,它應該在那裏。此外,不要將鼠標懸停在頁面上的內容刪除。請幫忙。

<style>    
#tooltip{ 
    position:absolute; 
    border:1px solid #333; 
    background:#f7f5d1; 
    padding:2px 5px; 
    color:#333; 
    display:none; 
    width: auto; 
} 

/* */ 
</style>    
<script type="text/javascript" language="JavaScript">    
    this.tooltip = function(){ 
     /* CONFIG */   
     xOffset = 10; 
     yOffset = 50;  
     // these 2 variable determine popup's distance from the cursor 
     // you might want to adjust to get the right result  
     /* END CONFIG */ 

     $("a.tooltip").hover(function(e){ 
      this.t = this.title; 
      this.title = ""; 
      $(body).append("<p id='tooltip' class='tooltip'>"+ this.t +"</p>"); 
      $("#tooltip") 
       .css("top",(e.pageY - xOffset) + "px") 
       .css("left",(e.pageX + yOffset) + "px") 
       .fadeIn("slow");   
     }, function(){ 
      this.title = this.t;   
      $("#tooltip").remove(); 
     }); 

     $("a.tooltip").mousemove(function(e){ 
      $("#tooltip") 
       .css("top",(e.pageY - xOffset) + "px") 
       .css("left",(e.pageX + yOffset) + "px"); 
     });   
    }; 

    // starting the script on page load 
    $(document).ready(function(){ 
     tooltip(); 
    }); 
</script> 

由JSP生成的HTML部分是:

<table width="100%" cellpadding="5px" cellspacing="5px" > 
    <tr valign="top" class="h1"> 
     <td>Version</td><td>Price</td><td>Published</td><td>Edition</td> 
    </tr> 
    <tr valign="top"> 
     <td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781857159042" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781857159042' src='/images/jackets/s/18/1857159047.jpg' /></td><td>ISBN: 9781857159042 <br>Version: Hardback <br>Price: &pound;10.99 <br>Publication Date:24 Sep 1992 <br>Publisher: Everyman Everyman's Library</td></tr></table> ">Hardback</a></td><td>&pound;10.99</td><td width=auto align=center>1992</td><td width=auto>New edition</td> 
    </tr> 
    <tr valign="top"> 
     <td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781840119688" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781840119688' src='/images/jackets/s/18/1840119683.jpg' /></td><td>ISBN: 9781840119688 <br>Version: Hardback <br>Price: &pound;16.99 <br>Publication Date:01 Sep 2009 <br>Publisher: Templar Publishing</td></tr></table> ">Hardback</a></td><td>&pound;16.99</td><td width=auto align=center>2009</td><td width=auto></td> 
    </tr> 
    <tr valign="top"> 
     <td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781841939735" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781841939735' src='/images/jackets/s/18/1841939730.jpg' /></td><td>ISBN: 9781841939735 <br>Version: Hardback <br>Price: &pound;14.99 <br>Publication Date:01 Sep 2011 <br>Publisher: Arcturus Publishing Ltd</td></tr></table> ">Hardback</a></td><td>&pound;14.99</td><td width=auto align=center>2011</td><td width=auto></td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781853261183" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781853261183' src='/images/jackets/s/18/1853261181.jpg' /></td><td>ISBN: 9781853261183 <br>Version: Paperback <br>Price: &pound;1.99 <br>Publication Date:01 Sep 1993 <br>Publisher: Wordsworth Editions Ltd</td></tr></table> ">Paperback</a></td><td>&pound;1.99</td><td width=auto align=center>1993</td><td width=auto>New edition</td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781840114881" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781840114881' src='/images/jackets/s/18/1840114886.jpg' /></td><td>ISBN: 9781840114881 <br>Version: Hardback <br>Price: &pound;14.99 <br>Publication Date:01 Oct 2008 <br>Publisher: Templar Publishing</td></tr></table> ">Hardback</a></td><td>&pound;14.99</td><td width=auto align=center>2008</td><td width=auto></td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9780141023557" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9780141023557' src='/images/jackets/s/01/0141023554.jpg' /></td><td>ISBN: 9780141023557 <br>Version: Paperback <br>Price: &pound;4.99 <br>Publication Date:26 Jan 2006 <br>Publisher: Penguin Books Ltd Penguin Classics</td></tr></table> ">Paperback</a></td><td>&pound;4.99</td><td width=auto align=center>2006</td><td width=auto>New edition</td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781848770010" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781848770010' src='/images/jackets/s/18/1848770014.jpg' /></td><td>ISBN: 9781848770010 <br>Version: Hardback <br>Price: &pound;14.99 <br>Publication Date:01 Sep 2010 <br>Publisher: Templar Publishing</td></tr></table> ">Hardback</a></td><td>&pound;14.99</td><td width=auto align=center>2010</td><td width=auto></td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9780956266828" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9780956266828' src='/images/jackets/s/09/0956266827.jpg' /></td><td>ISBN: 9780956266828 <br>Version: Hardback <br>Price: &pound;6.99 <br>Publication Date:28 Oct 2010 <br>Publisher: White's Books Ltd</td></tr></table> ">Hardback</a></td><td>&pound;6.99</td><td width=auto align=center>2010</td><td width=auto></td></tr><tr valign="top"><td><a href="http://botswana.blackwell.co.uk:82/jsp/display_product_info.jsp?isbn=9781906814489" class="tooltip" title="<table><tr><td><img class='jacket' width='75' border='1' alt='ISBN:9781906814489' src='/images/jackets/s/19/1906814481.jpg' /></td><td>ISBN: 9781906814489 <br>Version: Paperback <br>Price: &pound;3.50 <br>Publication Date:02 Jul 2010 <br>Publisher: Classic Comic Store Ltd</td></tr></table> ">Paperback</a></td><td>&pound;3.50</td><td width=auto align=center>2010</td><td width=auto></td> 
    </tr> 
</table>  

回答

1

你在這裏缺少一些報價:

$('body').append("<p id='tooltip' class='tooltip'>"+ this.t +"</p>"); 

我認爲body在IE每默認定義,但不在Firefox中。通過將其放在括號中,實際上可以觸發jQuery的選擇器引擎來搜索元素,而不是試圖包裝(不存在的)變量。

以某種方式工作的例子可以是found here。然而,你的代碼似乎並沒有刪除「工具提示」。

+0

感謝Sirko的編輯和調查。我試過引號,但問題是,我仍然無法實現我在IE中獲得的內容。可以看到在頁面底部發布的內容即將出現在IE中的工具提示中,但FF顯示的行爲與正在顯示的工作示例的鏈接相似。 –

+0

在IE中,內容被填充爲一個黃色框內的工具提示,當用戶懸停時用戶盤旋並消失時會彈出一個黃色框。代碼是一樣的。 –

+0

@anshultiwari在哪個IE版本上工作?我的IE9顯示與我的Firefox相同的輸出。所以代碼通常是有缺陷的。 – Sirko

相關問題