选择二:如何添加,而不是“没有找到结果”文本的链接?(Select2: how to add a l

2019-09-28 02:45发布

以下是我的代码:

$('#cow_id_2').select2({
        allowClear: true,
        placeholder: "Search a cow/dam ID",
        formatNoMatches: function (term) {
            return "<a href=/'http://google.com/'>Add</a>";
        }
    });

当我尝试添加一个链接插件会停止工作。 我使用的选择二版本4.0.3

Answer 1:

如果您使用4版本或选择2更新,试试这个:

$('#cow_id_2').select2({
        allowClear: true,
        escapeMarkup: function (markup) { return markup; },
        placeholder: "Search a cow/dam ID",
        language: {
            noResults: function () {
                 return "<a href=/'http://google.com/'>Add</a>";
            }
        }
    });


文章来源: Select2: how to add a link instead of “No results found” text?