1、在設定HTML元素的capture狀态時:

// we clear any current selection because it will get stuck in selected state after drop (bug 211)

document.selection.clear();
// 這個缺陷我還沒有遇到,不過既然微軟說有可能發生,那以後就注意一下啦。
2、不能取到滾動條的确切寬度:

// adjust for scrollbars when present

if (m_Bod.clientWidth != m_Bod.scrollWidth)

{

vr.b -= 25;

// REIVEW: BUG: scroll bars are not always 20 px

// window.status += "[bottom scrollbar shown] ";

}
// 這個問題我是遇到過,不過不知道微軟自己Review後的結果是啥呀
?!
本文轉自部落格園鳥食軒的部落格,原文連結:http://www.cnblogs.com/birdshome/,如需轉載請自行聯系原部落客。