2013-10-24 21 views
0

工作出於某種原因,我的形象的地圖是工作在每一個瀏覽器,但IE瀏覽器,影像地圖未在資源管理器

我似乎無法找出原因,並不能非常準確地測試它,因爲我在Mac上。

<div id="joinnow">   
     <div style="text-align:center; width:358px; margin-left:auto; margin-right:auto;"> 
      <map id="imgmap20131021153742" name="imgmap20131021153742"><area shape="rect" alt=""  title="" coords="23,26,162,109" href="https://signup.myiclubonline.com/iclub/signup/home.htm#plans?clubNumber=3790" target="_blank" /><area shape="rect" alt="" title="" coords="22,114,158,188" href="https://signup.myiclubonline.com/iclub/signup/home.htm#plans?clubNumber=4790" target="_blank" /><area shape="rect" alt="" title="" coords="201,103,340,185" href="http://therac.wufoo.com/forms/z7x4a3/" onclick="window.open(this.href, null, 'height=825, width=475, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false" title="TheRAC" /></map> 
      <img src="http://www.therac.net/images/joinnow.jpg" USEMAP="#imgmap20131021153742" /> 
     </div> 
</div> 

div ID爲 「joinnow」 的CSS是...

#joinnow 
{ 
    font-size:18px; 
    font-weight:500; 
    font-family:Tahoma, Geneva, sans-serif; 
    color:#fff; 
    text-align:center; 
    position:relative; 
    float:right; 
    background-image:url(images/joinnow.jpg); 
    height: 195px; 
    width:179px; 
} 

預先感謝任何幫助提供!

+1

做工精細這裏http://jsfiddle.net/ZrYBV/ –

回答

1

工作正常這裏時,Internet Explorer 11

USEMAP是小寫

<div id="joinnow">   
     <div style="text-align:center; width:358px; margin-left:auto; margin-right:auto;"> 
      <map id="imgmap20131021153742" name="imgmap20131021153742"><area shape="rect" alt=""  title="" coords="23,26,162,109" href="https://signup.myiclubonline.com/iclub/signup/home.htm#plans?clubNumber=3790" target="_blank" /><area shape="rect" alt="" title="" coords="22,114,158,188" href="https://signup.myiclubonline.com/iclub/signup/home.htm#plans?clubNumber=4790" target="_blank" /><area shape="rect" alt="" title="" coords="201,103,340,185" href="http://therac.wufoo.com/forms/z7x4a3/" onclick="window.open(this.href, null, 'height=825, width=475, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false" title="TheRAC" /></map> 
      <img src="http://www.therac.net/images/joinnow.jpg" usemap="#imgmap20131021153742" /> 
     </div> 
</div> 

#joinnow 
{ 
    font-size:18px; 
    font-weight:500; 
    font-family:Tahoma, Geneva, sans-serif; 
    color:#fff; 
    text-align:center; 
    position:relative; 
    float:right; 
    background-image:url('images/joinnow.jpg'); 
    height: 195px; 
    width:179px; 
} 

http://jsfiddle.net/6LN6C/2/

+0

非常感謝您的幫助! – Kizuka