jQuery UI Focus Stealing

后端 未结 5 1372
遇见更好的自我
遇见更好的自我 2020-12-17 18:16

Whenever I type something in the following Insert Hyperlink text input, all the words are going to textarea behind it. OK and Cancel buttons are working fine bu

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 18:56

    What I did to solve this problem is to comment out this $(".ui-dialog:visible:last .ui-dialog-content").data("ui-dialog")._focusTabbable();

    You can find the complete code below:

        if ( !$.ui.dialog.overlayInstances ) {
            // Prevent use of anchors and inputs.
            // We use a delay in case the overlay is created from an
            // event that we're going to be cancelling. (#2804)
            this._delay(function() {
                // Handle .dialog().dialog("close") (#4065)
                if ( $.ui.dialog.overlayInstances ) {
                    this.document.bind( "focusin.dialog", function( event ) {
                        if ( !$( event.target ).closest(".ui-dialog").length &&
                                // TODO: Remove hack when datepicker implements
                                // the .ui-front logic (#8989)
                                !$( event.target ).closest(".ui-datepicker").length ) {
                            event.preventDefault();
                            //$(".ui-dialog:visible:last .ui-dialog-content")
                                //.data("ui-dialog")._focusTabbable();
                        }
                    });
                }
            });
        }
    

提交回复
热议问题