jquery 日期控件datepicker属性详细解析
程序员文章站
2022-04-18 12:58:10
代码如下:
$("#regdate").datepicker(
{
&nbs...
代码如下:
$("#regdate").datepicker(
{
showmonthafteryear: true, // 月在年之后显示
changemonth: true, // 允许选择月份
changeyear: true, // 允许选择年份
dateformat:'yy-mm-dd', // 设置日期格式
closetext:'关闭', // 只有showbuttonpanel: true才会显示出来
duration: 'fast',
showanim:'fadein',
showon:'button', // 在输入框旁边显示按钮触发,默认为:focus。还可以设置为both
buttonimage: 'images/commons/calendar.gif', // 按钮图标
buttonimageonly: true, // 不把图标显示在按钮上,即去掉按钮
buttontext:'选择日期',
showbuttonpanel: true,
showothermonths: true,
//appendtext: '(yyyy-mm-dd)',
});
上一篇: ASP.Net巧用窗体母版页
下一篇: jQuery阻止同类型事件小结