我在一个新应用程序中使用jQuery datepicker。我正在初始化 jQuery 和jQuery UI,如下所示。
<script type="text/javascript">
//=== Load in any web modules necessary
google.load("jquery", "1");
google.load("jqueryui", "1");
</script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
输入是:
<input id="cqupmj" class="hasDatepicker" type="text" value="12-18-2012">
我的 datepicker jQuery 控制函数定义如下:
var dte = $('#cqupmj').val();
日期(dte)输入格式:'12-18-2012'
$( "#cqupmj" ).datepicker({
defaultDate: dte,
dateFormat: 'mm-dd-yyyy',
//dateFormat: 'yyyy-mm-dd',
changeMonth: true,
changeYear: true,
numberOfMonths: 1,
//dateFormat: 'mm-dd-yy',
altFormat: 'mm-dd-yyyy',
onSelect: quote.get_date
});
XML错误如下:
Error: An exception occurred.
Traceback (most recent call last):
File "resource://jid1-f9uj2thwoam5gq-at-jetpack/api-utils/lib/system/events.js", line 58, in
data: data
File "resource://jid1-f9uj2thwoam5gq-at-jetpack/api-utils/lib/observer-service.js", line 35, in listener
callback.call(target || callback, subject, data);
File "resource://jid1-f9uj2thwoam5gq-at-jetpack/collusion/lib/main.js", line 395, in
queueInfo(connection);
File "resource://jid1-f9uj2thwoam5gq-at-jetpack/collusion/lib/main.js", line 197, in queueInfo
if (types.indexOf(info.type) == -1) {
TypeError: types is undefined
这些日期选择器曾经工作过,现在不工作了。代码没有改变,但我不知道出了什么问题。我如何解决它?