wenmaomao 2014-01-02
转自http://hi.baidu.com/wsy555/item/b48f8b2529573dc1a4275a17
jquerydatepicker改大小问题,很纠结网上找了好多,说改css
.ui-datepicker{width:17em;padding:.2em.2em0;display:none;font-size:大小}可惜我试了不起作用
我试着用js加载后改,发现成功了!!!!
$(function(){ $("#starttime").datepicker({ dateFormat: 'yy-mm-dd',//日期格式 changeMonth:true, changeYear:true, }); $("#ui-datepicker-div").css('font-size','0.9em') //改变大小 });