我已經集成了jquery-asmselect,並且希望能夠使用頁面上的其他鏈接選擇選項。爲了形象我想要做的,你可以查看頁面here使用鏈接和asmselect選擇選擇表單選項
這裏是jQuery代碼我使用asmselect:
$(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;
}));
});
對不起,我不理解。你能否澄清你的意思:「我希望能夠使用頁面上的其他鏈接選擇選項。」 ? –
嘿@AllenZ。 ,在我的頁面http://dev.mybrunchi.com上,我想使用左側的地圖鏈接來定位鄰居選擇選項。我試過一些其他的JavaScript代碼,但它打破了asmselect代碼。我正在尋找一種能夠保持asmselect功能的解決方案。 – heath1224
謝謝。我明天去看看。 –