jQueryUI autocomplete not working with dialog and zIndex

前端 未结 14 1269
孤独总比滥情好
孤独总比滥情好 2021-02-05 00:51

I ran into an interesting issue with jQueryUI autocomplete in a dialog box.

My dialog HTML looks like this:

14条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-05 01:10

    Tried everything mentioned here (some failed whenever I hover over items and return again), but this is the only thing that worked for me in all cases:

    $("selector").autocomplete({
        ...
        appendTo: "body",    // <-- do this
        close: function (event, ui){
            $(this).autocomplete("option","appendTo","body");  // <-- and do this  
        }
    });    
    

提交回复
热议问题