Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/gwt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
GWT中的SuggestBox无法在Internet explorer中使用鼠标选择内容_Gwt - Fatal编程技术网

GWT中的SuggestBox无法在Internet explorer中使用鼠标选择内容

GWT中的SuggestBox无法在Internet explorer中使用鼠标选择内容,gwt,Gwt,我在GWT中有一个建议框;我无法在internet explorer中用鼠标选择建议框的内容 代码如下: oracle = new MultiWordSuggestOracle(); suggestBox = new SuggestBox(oracle); suggestBox.setAutoSelectEnabled(true); suggestBox.setWidth("100%"); suggestBox.getElement().setId("f

我在GWT中有一个建议框;我无法在internet explorer中用鼠标选择建议框的内容

代码如下:

    oracle = new MultiWordSuggestOracle();
    suggestBox = new SuggestBox(oracle);
    suggestBox.setAutoSelectEnabled(true);

    suggestBox.setWidth("100%");
    suggestBox.getElement().setId("find_text");

    suggestBox.getTextBox().addBlurHandler(new BlurHandler() {
        @Override
        public void onBlur(BlurEvent event) {
            Log.debug("inside blurrrrrrrrr:"+event);
            suggestBox.setFocus(true);
        }
    });

你能解释一下你的期望和收获吗?“选择”这个词有很多含义。你能准确地描述一下你的意思吗?假设我在suggestbox中输入“alca”之类的数据,如果我试图用鼠标复制内容,它不会发生在IE上,其他浏览器我可以复制和选择我在SuggestBox中输入的内容你可以用普通的文本框吗?即使是文本框也不允许在internet explorer上用鼠标选择其内容