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"/>