所以这是它的总和:
<script>
//hard coded these to simplify my code
var startDate = '01-01-2013';
var endDate = '01-31-2013';
$(document).ready(function() {
$('#ReportStartDays').val(startDate);
$('#ReportEndDays').val(endDate);
}
jQuery('#Report').jqGrid({
//Sometimes these grab the right values, and sometimes it doesn't
//ReportStartDays.val();
//ReportEndDays.val()
});
</script>
任何人都知道为什么我的报告输入不能正常工作?有时它会抓住它们,有时则不会。如果我将startDate
andendDate
放在 ready 函数中,那么由于某种原因,它们的初始化速度不够快,无法从 jQuery 函数中读取新值。有任何想法吗?