Internet Explorer中的工具提示问题

时间:2011-05-11 07:51:22

标签: javascript jquery css

css代码

  /*********************/
/*      Tooltip      */
/*********************/

a.tooltip, a.tooltip:link, a.tooltip:visited, a.tooltip:active  {
  position: relative;
  text-decoration: none; 
  cursor: pointer;
  font-style: italic;
  }

a.tooltip:hover {
  font-weight: bold;
  background: transparent;
  visibility:visible;
  }

a.tooltip span {
  display: none;  
  text-decoration: none; 
}

a.tooltip:hover span {
  display: block;
  position: absolute; 
  top: 20px; 
  left: 0; 
  z-index: 2000;
  color: #000000; 
  border:1px solid #000000; 
  background: #efefef;
  font-family : Verdana, Arial,Helvetica,sans-serif; 
  font-size:    11px;
  text-align: left;
  }

a.tooltip span b {
  display: block;
  margin: 0;
  padding: 2 2 2 2;
  font-family : Verdana, Arial,Helvetica,sans-serif; 
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  color: #FFFFFF;
  background-color: #000000;
  border-bottom: 1px solid black;
}

.analyzerGuiStatistics .queriesPerDayTable{
    border-spacing: 0px;   /* -> This property will not be interpreted correctly even up to IE 7; normally substitute for cellspacing="0"; */ 
    border-collapse: collapse;  /* this will work in ie and moz */ 
    width: 150px;
}

jsp代码

<a class="tooltip"><%=results.getRecordCount()%>
<span>
  <b><bean:message bundle="AnalyzerTexts" key="queries.perDay"/></b>
   <table class="tooltip queriesPerDayTable">
    <%for (inta=0a<searchesAtDay.size();a++)   {                                                     if(a%2==0) {bgColor=brightBgColor;}
      else {bgColor=darkBgColor;}%>
     <tr class="<%=bgColor%>">
                                           <td><%=displayDateFormatMedium.format(logDays.get(a))%></td>
    <td class="config_el_align_right"><%=searchesAtDay.get(a)%></td>
   </tr>    
   <%} %>
  </table>
   </span>
   </a>

以上工具提示在Firefox中运行良好,但在IE中却不行?

2 个答案:

答案 0 :(得分:1)

向您提问如何接受答案

enter image description here

  1. L.H.S有一个未选择的答案,点击勾选标记即可回答接受的答案
  2. 1表示1投票,-1表示1投票
  3. 要投票,请按upward faced pyramid并对另一个进行投票,从那里开始,你需要有足够的声望点。所以开始接受你的问题的任何答案,人们会愉快地回答你的问题:)。
  4. 希望这能回答你的问题How to accept? I have no idea.?

答案 1 :(得分:0)

如果没有:hover属性,IE不支持href锚标记。

您需要将代码添加到代码中以使其在IE中工作例如:

<a class="tooltip" href="#">