我刚刚在我的 Web 应用程序中使用了 Jquery Datepicker。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"
type="text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css"
rel="Stylesheet" type="text/css" />
<script type="text/javascript">
$(function () {
$("[id$=txtDate]").datepicker({
showOn: 'button',
altField: '[id$=HiddenField1]'
});
if ($("[id$=HiddenField1]").attr("Value").length > 0) {
$("[id$=txtDate]").datepicker("setDate", new Date($("[id$=HiddenField1]").attr("Value")));
}
});
</script>
但是在运行应用程序时,下面的行出错了
if ($("[id$=HiddenField1]").attr("Value").length > 0)
错误是:JavaScript 运行时错误:无法获取未定义或空引用的属性“长度”
请帮我解决这个问题?