我使用了一个方法tagsInput
的插件,如下所示:
$.fn.tagsInput = function(options) {
var settings = jQuery.extend({
interactive:true,
defaultText:'add a tag',
minChars:0,
width:'300px',
height:'100px',
autocomplete: {selectFirst: false },
hide:true,
delimiter: ',',
unique:true,
removeWithBackspace:true,
placeholderColor:'#666666',
autosize: true,
comfortZone: 20,
inputPadding: 6*2
},options);
现在我想在我的脚本中更改defaultText
选项,其中act for all plugin instance。
我引用了this article,但无法解决它。