我正在input box
使用window.getSelection method
.
input box
出于某种原因,如果我添加,我无法输入任何内容
window.getSelection().removeAllRanges();
在我的代码中。
我的代码:
//register a mouseup event to the whole page so wherever user releases mouse it trigger mouseUP function
//body -> whole html page
addEvent(body, 'onmouseup', mouseUp);
function mouseUp(){
window.getSelection().removeAllRanges();
}
我在页面上有几个input boxes
,如果我添加
window.getSelection().removeAllRanges();
光标甚至不会出现,我无法输入任何内容。
谁能给我一个提示?非常感谢!