2012-09-11 61 views
1

這裏是JavaScript函數,它是呼叫時錨標記點擊時,在Internet Explorer ieComments1不工作的第二錨定DIV標籤不能正常工作 和div標籤免責聲明:上網工程探險家請爲我提供一些解決方案2個div標籤切換功能,在Internet Explorer中不工作

<Script type="text/javascript"> 
    var $J = jQuery.noConflict(); 
    function ToggleComment() { 
     if (!($J('#Comments1').is(":visible"))) {  
        $J('#Disclaimer').toggle(); 
     } 
} 

function f_show_comments() {  
     $J('#Disclaimer').hide(); 
     $J('#Comments1').show(); 
} 

    </script> 
    <html> 
    <body> 

     <div align="center" style="margin:10px 0;"> 
     <b><a href="" onclick="ToggleComment();return false;" style="FONT-SIZE: 13px; COLOR:#1F3E61; FONT-FAMILY: Georgia,Times New Roman, Times, serif;"> Click here to post your comments about this article.</a> 
     <a href="" id="c" onclick="f_show_comments();return false;" style="FONT-SIZE: 14px; color:#cc0000; FONT-FAMILY: Georgia,Times New Roman, Times, serif;" >Click here to accept the terms of this disclaimer.</a></b> 
     </div> 

     <div id="Disclaimer" style="display:none;"> 
      <P align=center><STRONG>SUMMARY DISCLAIMER AND TERMS OF USE</STRONG></P> 

      <P>Minors should seek parental permission before submitting a post.</P> 
      <P>All comments submitted may be reviewed and edited by the Communications department before going live on the website.</P> 

      <P>For the complete Terms of Use, please <a target="_blank" href="http://www.newmiamiarch.org/Atimo_s/news/Terms of Service.pdf">click here</a>.</P> 
     </div> 

     <div id="Comments1" style="display:none;" align="center"> 
      <p align="left">Your comment will be submitted to the web stie. 
      While are contact references that will only be used by the staff </p> 

     </div> 
    </body> 
    </html> 
+0

哪個版本的IE?任何錯誤?點擊鏈接時是否發生任何事情? – Amalea

回答

0

Chnage你的JavaScript函數體,以及一些html屬性值。

<script type="text/javascript"> 
     var $J = jQuery.noConflict(); 

     function ToggleComment() { 
      if (!($J('#Disclaimer').is(":visible"))) { 
       $J('#Disclaimer').show(); 
       $J('#Comments1').hide(); 
      } 
     } 

     function f_show_comments() { 
      if (!($J('#Comments1').is(":visible"))) { 
       $J('#Comments1').show(); 
       $J('#Disclaimer').hide(); 
      } 
     } 
    </script> 
    <div align="center" style="margin:10px 0;"> <b><a href="javascript:void(0);" onclick="ToggleComment();" style="FONT-SIZE: 13px; COLOR:#1F3E61; FONT-FAMILY: Georgia,Times New Roman, Times, serif;"> Click here to post your comments about this article.</a> 
    <a href="javascript:void(0);" id="c" onclick="f_show_comments();" style="FONT-SIZE: 14px; color:#cc0000; FONT-FAMILY: Georgia,Times New Roman, Times, serif;" >Click here to accept the terms of this disclaimer.</a></b> 

    </div> 
    <div id="Disclaimer" style="display:none;"> 
     <P align=center> 
      <STRONG>SUMMARY DISCLAIMER AND TERMS OF USE</STRONG></P> 

     <P>Minors should seek parental permission before submitting a post.</P> 
     <P>All comments submitted may be reviewed and edited by the Communications department before going live on the website.</P> 

     <P>For the complete Terms of Use, please <a target="_blank" href="http://www.newmiamiarch.org/Atimo_s/news/Terms of Service.pdf">click here</a>.</P> 
    </div> 

    <div id="Comments1" style="display:none;" align="center"> 
     <p align="left">Your comment will be submitted to the web stie. 
     While are contact references that will only be used by the staff </p> 

    </div> 
+0

非常感謝KKit的工作...... –

+0

很高興爲您效勞:) –

+0

KK我發佈了另一個問題,請檢查它... –

相關問題