我已经集成了jquery-asmselect,并且希望能够使用页面上的其他链接来选择选项。为了可视化我正在尝试做的事情,您可以在此处查看页面
这是我用于 asmselect 的 jquery 代码:
$(document).ready(function() {
$("#CategoryID").asmSelect({
addItemTarget: 'bottom',
animate: true,
highlight: false,
sortable: false
}).after($("<a href='#' class='select-all'>select all neighborhoods</a>").click(function() {
$("#CategoryID").children().attr("selected", "selected").end().change();
return false;
}));
$("#search_SubCategoryID").asmSelect({
addItemTarget: 'bottom',
animate: true,
highlight: false,
sortable: false
}).after($("<a href='#' class='select-all'>select all cuisines</a>").click(function() {
$("#search_SubCategoryID").children().attr("selected", "selected").end().change();
return false;
}));
});