我的主页是   http://www.freeis.cn
请大家看看。   里面的链接能否顺利打开。      比如 点击 中心——>Popular Web.Site——> google这个主页。如果在windows下,  大部分人可以点击通过。  但有几个实用IE6的朋友, 到最后,无法打开链接页面。    如果在linux(Firefox)和 mac(safari和firefox)下, 则就是以竖排的汉字。 换句话说就是不能解释 js代码。(浏览器绝对具备这个功能:因为我之前接入google talk的页面版 都完全成功。)当然在部分操作linux mac下 保证兼容比较困难。  那就请各位帮我看看在IE 上如何解决~~~ 谢谢各位了~~呵呵源码直接在页面获取就得了~~ 谢谢

解决方案 »

  1.   

    ie6 ie7 下测试正常,没有问题firefox 下不正常
    但是把 CSS
    <style type="text/css">        
    <!--  下面内容修改字体颜色 -->
    .dot         { position: absolute; width: 6; height: 6; visibility: hidden; background-color: #00FF00; font-size: 1px; cursor: pointer; cursor: hand; z-index: 100 } <!--none open -->
    .dotoff      { position: absolute; width: 6; height: 6; visibility: hidden; background-color: #CCCCFF; font-size: 1px; cursor:default; z-index: 100} <!--parents nodes -->
    .dotempty    { position: absolute; width: 6; height: 6; visibility: hidden; background-color: #FFCC00; font-size: 1px; cursor: pointer; cursor: hand; zindex: 100 }   <!--直接打开的 -->
    .caption     { position: absolute; visibility: hidden; font-family: Tahoma; color: #00CCFF; 
                   font-size: 11px; text-align: Center; cursor: default; z-index: 
                   1 }<!--word -->body    { margin: 0px; background-color: white; }
    a    { color: silver; text-decoration: none }
    p    { font-size: 10px; font-family: tahoma; color: black } 
    </style>
    把里面的 <!-- XXXXX --> 去掉或替换成 /* XXXX */形式,firefox 也正常
      

  2.   

    注释错误,css的注释格式是 /* xxx */ 而不是 <!-- -->
      

  3.   

    IE6访问没有问题 注意注释格式:
    html的注释格式是<!-- -->
    CSS 的注释格式是/*   */如果我的发言对您有帮助,请支持下。(点点广告)
      

  4.   

    没什么问题,就是上面所有的说法,注释问题。我以前试过,在CSS文件里用<!--xxxx-->注释不是不行,而是要写成<!-- xxxx -->文字前后要有空格,而且最好独立一行就不会有问题,不然就会很怪,起码我就试过读不了注释以下的所有CSS,但独立一行并且加了空格后,就正常了。