我只是想为输入设置一个值,但它不起作用。这是我的 jquery 函数:
function display_form() {
try {
$('#start_date').val('2012/08/21');
} catch (e) {
alert('error');
}
// window.alert($('[name=start_date]').val()); (shows "undefined")
$('#add-event').show();
}
这就是 display_form 的调用方式:
$(document).ready(function() {
$('#calendar').fullCalendar({
dayClick: function(date, allDay, jsEvent, view)
{
date_format = $.fullCalendar.formatDate(date,"yyyy-MM-dd HH:mm:ss");
display_form();
return false;
},
events: 'https://www.google.com/calendar/feeds/myLogin%40gmail.com/public/basic'
});
});
这显示“未定义”。这是我的表格:
<input id="start_date" name="start_date" type="text" size="6" />
我应该把我想使用的表单的 id 放在某个地方吗?我只是按照 jquery 文档中的说明进行操作,但它似乎不起作用。谁能帮助我?