<input id="a" class="easyui-datebox" style="width:135px" data-options="buttons:buttons">
<script type="text/javascript">
var buttons = $.extend([], $.fn.datebox.defaults.buttons);
buttons.splice(1, 0, {
text: '清空',
handler: function (target) {
$('#a').datebox('setValue', '');
$('#a').datebox('hidePanel');
}
});
</script>
这是为一个datebox添加清空,同一页面还有个
<input id="b" class="easyui-datebox" style="width:135px" data-options="buttons:buttons">
怎么改js,