用js onselectstart事件鼠标禁止选中文字

<div style="width:100px" onselectstart="return false">这里面的文字是不能被鼠标选中的</div>
$(this).get(0).onselectstart=function(){return false;};


用js onselectstart事件鼠标禁止选中文字