1

コードで「jquery-1.8.3.js」と「jquery-ui.js」の 2 つの jquery API を使用する必要があります。しかし、すでに古いバージョンの jquery があります。このため、フォームが正しく機能していません。

ネットで解決策を検索して見つけたので、使用できます

<script>
    var jq13 = jQuery.noConflict(true);
</script>

しかし、API を作成する必要があるため、2 つの変数を作成しましたが、まだ機能していません。これは私のコードです:-

<script>
(function( $ ) {
    $.widget( "ui.combobox", {
        _create: function() {
            var input,
                that = this,
                select = this.element.hide(),
                selected = select.children( ":selected" ),
                value = selected.val() ? selected.text() : "",
                wrapper = this.wrapper = $( "<span>" )
                    .addClass( "ui-combobox" )
                    .insertAfter( select );

            function removeIfInvalid(element) {
                var value = $( element ).val(),
                    matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( value ) + "$", "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
                    $( element )
                        .val( "" )
                        .attr( "title", value + " didn't match any item" )
                        .tooltip( "open" );
                    select.val( "" );
                    setTimeout(function() {
                        input.tooltip( "close" ).attr( "title", "" );
                    }, 2500 );
                    input.data( "autocomplete" ).term = "";
                    return false;
                }
            }

            input = $( "<input>" )
                .appendTo( wrapper )
                .val( value )
                .attr( "title", "" )
                .addClass( "ui-combobox-input" )
                .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;
                        that._trigger( "selected", event, {
                            item: ui.item.option
                        });
                    },
                    change: function( event, ui ) {
                        if ( !ui.item )
                            return removeIfInvalid( this );
                    }
                })
                .addClass( "ui-widget ui-widget-content ui-corner-left" );

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

            $( "<a>" )
                .attr( "tabIndex", -1 )
                //.attr( "title", "Show All Items" )
                .tooltip()
                .appendTo( wrapper )
                .button({
                    icons: {
                        primary: "ui-icon-triangle-1-s"
                    },
                    text: false
                })
                .removeClass( "ui-corner-all" )
                .addClass( "ui-corner-right ui-combobox-toggle" )
                .click(function() {
                    // close if already visible
                    if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
                        input.autocomplete( "close" );
                        removeIfInvalid( input );
                        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.wrapper.remove();
            this.element.show();
            $.Widget.prototype.destroy.call( this );
        }
    });
})( jQuery );

$(function() {
    $( "#driver_uuidHOS" ).combobox();       
});
</script>

そして、私は2つの変数を宣言しました:-

<script src="js/new/jquery-1.8.3.js"></script>
<script>
    var jq13 = jQuery.noConflict(true);
</script>
<script src="js/new/jquery-ui.js"></script>
<script>
    var jq131 = jQuery.noConflict(true);
</script>

コード内で jq13 を使用する必要がある場所と jq131 を使用する必要がある場所を教えてください。このコードは、検索可能な自動提案用です。前もって感謝します。

4

2 に答える 2

0

jQuery の 1 つのバージョンをロードし、次にそのバージョンのすべてのプラグインをロードしてから、非競合モードをオンにします。このプロセスは何度でも繰り返すことができます (ロードする必要がある jQuery コアのバージョンごとに 1 回)。

したがって、特定のケースでやりたいことは次のとおりです。

<script src="js/new/jquery-1.8.3.js"></script>
<script src="js/new/jquery-ui.js"></script>
<script src="path/to/your/code.js"></script>
<script>jQuery.noConflict(true);</script>

path/to/your/code.jsは、コンボボックス ウィジェットを定義する上記のコード ブロックを参照します。複数の jQuery バージョンをサポートするという点では、これが例のようにページ内に含まれているか、私の例のように外部ファイルとして含まれているかは問題ではありません。あなたが持っている(そしてすべてのプラグインが持っているべきである)無名関数ラッパーは、参照を保存するためのjQueryものです。これらのファイルが実行された時点jQueryで、 は正しいバージョンを指し、ファイルはそれへのローカル参照を として保存します$。後で可能であれば、グローバル変数が変更されjQuery.noConflict(true)ても、これらのファイルは参照を保持し続けます。後にjQuery競合モードを呼び出さないというこのパターンに従うと、他のすべてのファイルをロードする場合、すべてのコードに必要な参照が既にあるため、jQuery を新しい変数に割り当てる必要はありません。このアプローチの利点は、ラッパー関数に変数固有の名前が含まれることがなく、このモデルで開発されたすべての既存のプラグインで動作することが保証されていることです。これはすべて公式の jQuery プロジェクトであり、おそらく競合サポートなしについて考えました。


最後にもう 1 つ: スクリプトの最後で、jQuery を として参照して$いますが、参照を格納している関数ラッパーの外にいます$。これが実際にアプリ内の 2 つの個別のファイルである場合は、必ず各ファイルにラッパーを含めてください。上記のように、これが実際に 1 つのスクリプトである場合は、ドキュメント準備完了ブロックをラッパー内に移動してください。

于 2012-12-18T13:20:58.550 に答える
0

最初のバージョンをロードしたら、それを変数に割り当てることができます。

var jq13 = jQuery.noConflict(true); // as you did

次に、2 番目の jQuery バージョンをロードします。ロードした最初のものは jq13(...) でアクセスでき、2 番目のものは $(...) でアクセスできます。

2 番目のスクリプトに変数を割り当てる必要はありません...

于 2012-12-18T08:29:47.900 に答える