本文介绍了如何从“选择"中删除项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么方法可以从选择"中删除项目?
Is there any way I can remove an item from Selectize?
这是我的示例列表:
- AMNT
- 数量
- 不适用
当我通过NA
时,它应删除特定项目:
When I pass NA
it should remove particular item:
$.fn.removeSelectorValue = function (value) {
var selectize = this[0].selectize;
selectize.removeItem(value);
return this;
};
这不起作用.有人可以帮我吗?
This is not working. Can anyone help me with this?
推荐答案
removeItem
删除由给定值标识的 selected 项.要从列表中删除选项,您应该使用removeOption
removeItem
removes selected item identified by given value. To remove option from the list you should use removeOption
示例-打开 http://brianreavis.github.io/selectize.js/ ,打开控制台,然后输入:
Example - open http://brianreavis.github.io/selectize.js/, open console and enter:
$('#select-beast')[0].selectize.removeOption(1)
从可用选项中删除Chuck Tesla
to remove Chuck Tesla from available options
这篇关于如何从“选择"中删除项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!