删除 Select2 的初始选择

发布于 2025-01-09 13:24:46 字数 1021 浏览 0 评论 0原文

我正在使用 Select2jQuery UI 工具提示。我在这方面做了一个 jsfiddle 。我在下面描述问题。

$( function() {
    $(document).ready(function () {
      $('.js-example-basic-single').select2();
        
      $( document ).tooltip({
      position: {
        my: "center bottom-20",
        at: "center top",
        using: function( position, feedback ) {
          $( this ).css( position );
          $( "<div>" )
            .addClass( "arrow" )
            .addClass( feedback.vertical )
            .addClass( feedback.horizontal )
            .appendTo( this );
        }
      }
    });
    });
 });

如果我单击 Select2 的 dropdwon,下拉列表将打开并选择第一个值。我想删除这个初始选择。

输入图片此处描述

I am working with Select2 and jQuery UI Tooltip. I made a jsfiddle in this regard. I am describing issue below.

$( function() {
    $(document).ready(function () {
      $('.js-example-basic-single').select2();
        
      $( document ).tooltip({
      position: {
        my: "center bottom-20",
        at: "center top",
        using: function( position, feedback ) {
          $( this ).css( position );
          $( "<div>" )
            .addClass( "arrow" )
            .addClass( feedback.vertical )
            .addClass( feedback.horizontal )
            .appendTo( this );
        }
      }
    });
    });
 });

If I click on dropdwon of Select2, the drop down opens with first value selected. I would like to remove this initial selection.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文