selectbox-utils 介绍
easy to create numeric selectBox and date select Box
example:
<script> $(function(){ $('#year1').numericoptions({from:2007,to:2011}); $('#month1').numericoptions({from:1,to:12}); $('#date1').numericoptions().datePulldown({year:$('#year1'),month:$('#month1')}); }); </script> <select id="year1"/><select id="month1"/><select id="date1"/>