在看MyMsn的脚本源代码时,发现里面有一些微软自己遇到的bug也不能解决。列在这里,如果我们自己也遇到时就不要再郁闷了。

    1、在设置HTML元素的capture状态时:
MyMsn beta版源代码里微软遇到问题// we clear any current selection because it will get stuck in selected state after drop (bug 211)
MyMsn beta版源代码里微软遇到问题
document.selection.clear();

    // 这个缺陷我还没有遇到,不过既然微软说有可能发生,那以后就注意一下啦。

    2、不能取到滚动条的确切宽度:
MyMsn beta版源代码里微软遇到问题// adjust for scrollbars when present
MyMsn beta版源代码里微软遇到问题
if (m_Bod.clientWidth != m_Bod.scrollWidth)
MyMsn beta版源代码里微软遇到问题{
MyMsn beta版源代码里微软遇到问题    vr.b 
-= 25;
MyMsn beta版源代码里微软遇到问题    
// REIVEW: BUG: scroll bars are not always 20 px
MyMsn beta版源代码里微软遇到问题
    // window.status += "[bottom scrollbar shown] ";
MyMsn beta版源代码里微软遇到问题
}

    // 这个问题我是遇到过,不过不知道微软自己Review后的结果是啥呀MyMsn beta版源代码里微软遇到问题?!

相关文章:

  • 2022-12-23
  • 2021-04-08
  • 2022-01-12
  • 2021-10-05
  • 2021-04-01
  • 2022-12-23
  • 2021-04-11
  • 2021-11-04
猜你喜欢
  • 2022-12-23
  • 2022-02-13
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-02
相关资源
相似解决方案