求bt1.btchina.net上鼠标悬停显示信息的代码
新手,求教.
是用iframe么?
有人有代码啊?
最好能解释一下,谢谢

解决方案 »

  1.   

    我猜测是在TD上加onmouseover事件,展现一个本来是隐藏的DIV,然后在这个DIV里write相关的信息。
      

  2.   

    翻了一下,function onRowOver(row, rowNo){
      if(row_ed[rowNo]==null||!row_ed[rowNo]){
        // use row.bgColor save ori color since it has no effect if has style backgroundColor
        row.bgColor=row.style.backgroundColor;
        row.style.backgroundColor=row_over_color!=null?row_over_color:'#CCFFCC';
      }
    }这个函数应该就是鼠标处于TD的事件。应该还有一个现实内容用的。