我正在尝试做这个http://jquerywall.com/demo-multi-transfer-jquery-ui-selectable/ 但问题是这个多选插件有一些按钮。当我点击这些按钮中的任何一个时,我的页面会被发布并使用它的方法。这是我的按钮
<div id="transfer-buttons">
<button id="add-button">Add →</button>
<button id="add-all-button">Add All *→</button>
<button id="remove-button">← Remove</button>
<button id="remove-all-button">←* Remove All</button>
</div>
这是我的按钮功能
<script type="text/javascript">
$(function () {
$("#add-button").click(add);
$("#add-all-button").click(addAll);
$("#remove-button").click(remove);
$("#remove-all-button").click(removeAll);
$("#source-list, #target-list").selectable();
addHiglightPlugin();
});
我应该怎么办?