单击选择标记时为什么IE不会取消选择输入中的文本

时间:2017-06-14 13:37:49

标签: javascript css internet-explorer select input

我在HTML中有输入文本和选择标记。 我在输入标签中输入内容并选择文本,但是当我单击选择标签来选择某些内容时,IE不会取消选择输入标签中的文本。 这是IE的规格吗? 我可以使用JavaScript取消选择输入标签中的文字吗? enter image description here

{{1}}

1 个答案:

答案 0 :(得分:0)

找到解决方案。

window.document.onmousedown = mousedownControl;
function mousedownControl(e) {
    e = window.event;
    if (e.srcElement.nodeName == "SELECT") {
        document.selection.empty();
    }
}