作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理这段代码,我使用 jQuery UI 进行自动完成。现在我需要一些帮助来向它添加复选框,以便我可以进行多项选择,并且它以逗号分隔反射(reflect)在我的字段上。我找到了一个正是我想要创建的插件,但我不想为 [我的工作] 使用任何插件 http://www.igniteui.com/combo/selection-and-checkboxes
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<link rel="stylesheet" href="js/jquery-ui.css">
<body>
<input id="condition" type="text" placeholder="condition">
</body>
<script>
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$(document).ready(function () {
$('#condition').autocomplete({
source: availableTags,
minLength: 0
}).focus(function () {
try {
$(this).autocomplete("search");
}
catch (e) {
}
});
});
</script>
最佳答案
基本上,您首先需要更改 jQuery 自动完成的输出。
像这样
$('yourElement').autocomplete({ /* autocomplete config here */ }).data( "autocomplete" )._renderItem = function( ul, item ) {
var checked = ($.inArray(item.label, selectedItems) >= 0 ? 'checked' : '');
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( '<a><input type="checkbox" ' + checked + '/>' + item.label + '</a>' )
.appendTo( ul );
};
然后你必须将选择的元素存储在一个变量(数组)中
$('#yourElement').autocomplete({
// Configs
select:function(event, ui) {// Onselect event
// Don't forget to check if the item is already in the array
// and if it's the case to remove it
selectedItems.push(ui.item.label);
}
});
不要认为 selectItems 是一个数组,您需要在脚本中定义
你可以在这个JSFiddle上看到此代码将在自动完成列表中输出什么
希望对你有所帮助
关于javascript - 添加复选框以自动完成-jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30930459/
我是一名优秀的程序员,十分优秀!