如何禁用jquery-ui-datepicker的按钮包装器?

时间:2010-05-28 20:35:23

标签: javascript jquery jquery-ui datepicker jquery-ui-datepicker

请参阅此sample page

我想要使用的图标是:

alt text

页面上显示的图标如下所示:

alt text

如何使DatePicker无需修改即可使用原始图标?

1 个答案:

答案 0 :(得分:1)

您需要将buttonImageOnly property设置为true,如下所示:

$('#datepicker').datepicker({
   showOn: 'button', 
   buttonImageOnly: true,
   buttonImage: 'http://dl.dropbox.com/u/464119/kuzando/datepicker/calendar.png'
});

From the docs

  

buttonImageOnly :设置为true可将字段放在字段后用作触发器,而不会显示在按钮上。