gpt4 book ai didi

javascript - 如何更改 jquery.mentionsInput(jquery 插件)中的默认选项?

转载 作者:行者123 更新时间:2023-11-30 05:52:32 26 4
gpt4 key购买 nike

如何更改 jquery.mentionsInput(jquery 插件)中的默认选项

(function ($, _, undefined) {

// Settings
var defaultSettings = {
triggerChar : '@',
onDataRequest : $.noop,
minChars : 2,
showAvatars : true,
elastic : true,
classes : {
autoCompleteItemActive : "active"
},
templates : {
wrapper : _.template('<div class="mentions-input-box"></div>'),
autocompleteList : _.template('<div class="mentions-autocomplete-list"></div>')
}
};
....

如何从中设置其他 triggerChar 值

  $('textarea.mention, input.mention').mentionsInput({

onDataRequest:function (mode, query, callback) {
var data = [
{ id:1, name:'Kenneth Auchenberg', 'avatar':'http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif', 'type':'contact' }
];
}
});

最佳答案

来自docs你设置 triggerChar 例如

$('textarea.mention, input.mention').mentionsInput({

onDataRequest: function(){},
triggerChar: '#'
});

关于javascript - 如何更改 jquery.mentionsInput(jquery 插件)中的默认选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13838784/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com