作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从所选下拉列表中隐藏了特定选项。我无法完全删除它,因为我需要 IE6 上的该选项(!)。
我遇到的问题是,当我开始在输入字段中输入内容时,隐藏选项会重新出现在所选搜索结果中。
我还尝试使用 {display_disabled_options: false
} 选项,但它不起作用(可能是因为我在选择的选项已初始化后禁用该选项。
我正在尝试这样做:
$(".chosen-select").chosen({
display_disabled_options: false
}).each(function () {
$(this).on('chosen:showing_dropdown', function (event, params) {
$('li:contains("whatever")').attr('disabled', true);
});
});
最佳答案
如果您需要在选定的初始化后更新列表,则需要使用 trigger("chosen:updated")
触发其更新。
所以使用代码:
$(function () {
$('.chzn-select').chosen({
display_disabled_options: false
}).each(function () {
$(this).on('chosen:showing_dropdown', function (event, params) {
$('option:contains("shop")',$(this)).attr('disabled', true);
$(this).trigger("chosen:updated");
});
});;
});
关于javascript - 有没有办法从选定的 jquery select 中过滤掉搜索结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24059136/
我是一名优秀的程序员,十分优秀!