jQuery自动完成 - IE8问题 - 此选项卡已恢复

时间:2011-10-19 10:59:34

标签: javascript internet-explorer jquery-ui jquery-ui-autocomplete

我遇到了jQuery UI的问题 - 自动完成和IE8。

我正在使用jQuery UI网站上的combobox方法 - here
基本上,它是从select/option列表创建自动完成输入+选择菜单。

我正在使用jQuery 1.6.4和jQuery UI 1.8.16;两者都来自谷歌服务器。

它在Chrome / FF / Opera上完美运行,但在IE8上无效。

在IE8上 - 一旦你选择了某些东西(输入后),或者使用下拉按钮,IE将重新加载页面。 请注意,在使用箭头或尝试选择某些内容之前,IE不会崩溃。

    URL中的
  • res://ieframe.dll/acr_error.htm#,,位于实际路径前面
  • 或消息this tab has been reloaded; a problem with the page causes IE to close and reopen the page

Live example here

知道是什么导致IE这样做吗?任何建议都非常赞赏。


jQuery代码:

    <script>
    (function( $ ) {
        $.widget( "ui.combobox", {
            _create: function() {
                var self = this,
                    select = this.element.hide(),
                    selected = select.children( ":selected" ),
                    value = selected.val() ? selected.text() : "";
                var input = this.input = $( "<input>" )
                    .insertAfter( select )
                    .val( value )
                    .autocomplete({
                        delay: 0,
                        minLength: 0,
                        source: function( request, response ) {
                            var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
                            response( select.children( "option" ).map(function() {
                                var text = $( this ).text();
                                if ( this.value && ( !request.term || matcher.test(text) ) )
                                    return {
                                        label: text.replace(
                                            new RegExp(
                                                "(?![^&;]+;)(?!<[^<>]*)(" +
                                                $.ui.autocomplete.escapeRegex(request.term) +
                                                ")(?![^<>]*>)(?![^&;]+;)", "gi"
                                            ), "<strong>$1</strong>" ),
                                        value: text,
                                        option: this
                                    };
                            }) );
                        },
                        select: function( event, ui ) {
                            ui.item.option.selected = true;
                            self._trigger( "selected", event, {
                                item: ui.item.option
                            });
                        },
                        change: function( event, ui ) {
                            if ( !ui.item ) {
                                var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
                                    valid = false;
                                select.children( "option" ).each(function() {
                                    if ( $( this ).text().match( matcher ) ) {
                                        this.selected = valid = true;
                                        return false;
                                    }
                                });
                                if ( !valid ) {
                                    // remove invalid value, as it didn't match anything
                                    $( this ).val( "" );
                                    select.val( "" );
                                    input.data( "autocomplete" ).term = "";
                                    return false;
                                }
                            }
                        }
                    })
                    .addClass( "ui-widget ui-widget-content ui-corner-left" );

                input.data( "autocomplete" )._renderItem = function( ul, item ) {
                    return $( "<li></li>" )
                        .data( "item.autocomplete", item )
                        .append( "<a>" + item.label + "</a>" )
                        .appendTo( ul );
                };

                this.button = $( "<button type='button'>&nbsp;</button>" )
                    .attr( "tabIndex", -1 )
                    .attr( "title", "Show All Items" )
                    .insertAfter( input )
                    .button({
                        text: false
                    })
                    .removeClass( "ui-corner-all" )
                    .click(function() {
                        // close if already visible
                        if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
                            input.autocomplete( "close" );
                            return;
                        }

                        // work around a bug (likely same cause as #5265)
                        $( this ).blur();

                        // pass empty string as value to search for, displaying all results
                        input.autocomplete( "search", "" );
                        input.focus();
                    });
            },

            destroy: function() {
                this.input.remove();
                this.button.remove();
                this.element.show();
                $.Widget.prototype.destroy.call( this );
            }
        });
    })( jQuery );

    $(document).ready( function() {

        $("#combobox").combobox();

    });


    </script>

3 个答案:

答案 0 :(得分:3)

我仍在努力解决为什么 IE8崩溃但确实在您向页面添加jQueryUI主题时为我工作,例如:

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/cupertino/jquery-ui.css">

编辑:我想我知道它崩溃了哪条线,但我仍然不知道为什么!在jQueryUI code activate: function( event, item ) {

是以下代码,它将样式和属性添加到活动项目。

this.active = item.eq(0)
    .children("a")
    .addClass("ui-state-hover")
    .attr("id", "ui-active-menuitem")
    .end();

出于某种原因,IE8在这里崩溃,但对我来说,当我删除.addClass.attr行时有时不会崩溃。

编辑2:好的,出于某种原因,IE正在以.ui-autocomplete样式崩溃。如果您将overflow:scroll;更改为overflow:auto;,那么IE8不会崩溃。或者,将max-height更改为仅height,这也会修复它。使用max-height(可能是IE8 overflow:auto with max-height)或overflow猜测它是IE中的错误。

答案 1 :(得分:0)

从第一眼看,这条线对我来说很奇怪:

   if ( this.value && ( !request.term || matcher.test(text) ) )
       return {

但它在ie8中对我来说很好,在ie7中根本不起作用。 尝试if(){return {...}}。

答案 2 :(得分:0)

快速查看发现您的脚本标记缺少必需的类型属性

<script type="text/javascript">

我重现了这个问题,复制了没有CSS的本地文件,没有失败。

奇怪,如果在原始页面上,我使用IE开发人员工具禁用CSS,它不会崩溃。