我想在選擇更改時重新填充選擇框。使用循環填充選擇
我做了什麼至今(不工作):
$('select#mnt').change(function(){
var month = $(this).val();
var days = new Date(year, month, 0).getDate();
var toMonth = <?php echo $tomon; ?>;
var toDay = <?php echo $today; ?>;
var result='';
if (month!=toMonth) {
for(var i=1; i<=days;i++){
result += '<option>'+i+'</option>';
}
$('select#days').empty().html(result);
}
});
腳本在哪裏不起作用? – rollstuhlfahrer 2012-08-09 08:53:07