5

以下日期选择器不适用于 asp.net Web 表单。我更改了很多次代码,甚至其他示例都无法正常工作,甚至创建新页面来测试仍然无法正常工作。

<%@ 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 上的示例正在运行

http://jsfiddle.net/ANdUK/3/

4

2 回答 2

1

问题可能是 id 以某种方式更改,因为它们位于表单内。您应该检查生成的 id 并使用它。顺便说一句,jsfiddle 上的示例在没有 jQuery UI 的情况下不起作用

编辑尽量不要在脚本标签中放置空格,并尝试在表单之外进行正常输入

<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>
于 2012-05-30T10:37:05.297 回答
0

在以下代码行中的最后一个分号之后:

$(document).ready(function() {

     $('#Text1').datepicker();
      $('#<%=txtBookDate.ClientID %>').datepicker();
});​

你有某种狡猾的性格。删除它,你会很高兴的。

于 2012-05-30T10:52:31.140 回答