Google places autocomplete, how to clean up pac-container?

后端 未结 5 1957
鱼传尺愫
鱼传尺愫 2021-02-12 13:41

I\'m using the google places autocomplete control, and it creates an element for the drop down with a class pac-container.

I\'m using the autocomplete in a

5条回答
  •  伪装坚强ぢ
    2021-02-12 13:43

    This works for now until Google changes the class name.

    autocomplete.addListener('place_changed', function() {
    
        $('.pac-container').remove();
    
    });
    

提交回复
热议问题