firfox静止拖动,静止选中

静止拖动:document.ondragstart=function() {
    return false;
}
能够拖动:document.ondragstart=function() {
    return true;
}

静止选中:document.body.style['-moz-user-select'] = 'none'; 
能够选中:document.body.style['-moz-user-select'] = '-moz-all';
相关文章
相关标签/搜索