以下日期选择器无法在asp.net网络表单中使用。我改变了代码很多时间,甚至其他例子都没有工作&甚至创建新页面进行测试仍然无法正常工作。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<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">
//Code Starts
$(document).ready(function() {
$('#Text1').datepicker();
$('#<%=txtBookDate.ClientID %>').datepicker();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtBookDate" runat="server"></asp:TextBox><input id="Text1" type="text" />
</div>
</form>
</body>
</html>
jsFiddler上的示例正在运行
答案 0 :(得分:1)
问题可能是因为它们在表单内部而以某种方式更改了ID。您应该检查生成的ID并使用它。顺便说一句,如果没有jQuery UI,jsfiddle上的示例就不起作用
编辑尽量不在脚本标记中添加空格并尝试在表单外部取正常输入
<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>
答案 1 :(得分:0)
在以下代码行中的最后一个分号之后:
$(document).ready(function() {
$('#Text1').datepicker();
$('#<%=txtBookDate.ClientID %>').datepicker();
});
你有某种狡猾的性格。删除它,你会很高兴。