css: FF不能选文本:
-moz-user-select:-moz-none;


http://coos.group.iteye.com/group/wiki/1829-js-drag-and-drop-objects-prohibited-by-the-text-of-the-method-of-choice


http://topic.csdn.net/u/20100619/20/e7b45f40-33a1-4867-a972-5f867d012ad0.html
为何所有IE版本都能拖动,而火狐就不行?[


禁止拖放对象文本被选择的方法: 
1.ie中设置拖放对象的onselectstart返回false,在ff中设置样式MozUserSelect(css:-moz-user-select)为none。 
这种方法只能禁止拖放对象本身被选择。 
2. 
ie:document.selection.empty() 
ff:window.getSelection().removeAllRanges() 
兼容的写法: 
window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty(); 
这种方法不但不影响拖放对象的选择效果,还能对整个文档进行清除.


----------------------------------------------------------------------


副件 - 广告