1

我有 2 个文本框接受来自日历控件的日期。一个是From,另一个是To。我想相应地采取如下日期。

在第一个文本框(从)上,它只能取今天和任何其他上一个日期。但是,第二个文本框(到),它需要今天的日期,并且它的日期应该不小于第一个文本框的日期。

我怎么能在.net中做到这一点。这是我的代码。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"   Inherits="Default" %>

<!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>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.19.custom.css"  rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.19.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$("#txtfrom").datepicker({ maxDate:0 });
});
</script>

<script type="text/javascript">
$(function () {
    $("#txtto").datepicker({});
});
</script>


<style type="text/css">
.ui-datepicker { font-size:8pt !important}
</style>
</head>

<body>
<form id="form1" runat="server">
<div class="demo">
<b>From:</b> <asp:TextBox ID="txtfrom" runat="server" />
&nbsp &nbsp

<b>To:</b><asp:TextBox ID="txtto" runat="server"></asp:TextBox>
</div>
</form>
</body>
</html>

我的第一个文本框工作正常。但是你能帮助编写第二个文本框的代码吗?

4

3 回答 3

1

像这样设置你的日期选择器:

        $("#txtFrom").datepicker({
            onSelect: function (selectedDate) {
                $("#txtTo").datepicker("option", "minDate", selectedDate);
            }
        });

        $("#txtTo").datepicker({
            onSelect: function (selectedDate) {
                $("#txtFrom").datepicker("option", "maxDate", selectedDate);
            }
        });

当在日期选择器中选择日期时,它有效地做的是分别更改txtFromtxtTooption minDate和。maxDate

于 2013-08-08T10:46:58.950 回答
0

只需像迄今为止所做的那样添加一个新行:

$(function () {
  $('[id$=txtTo]').datepicker();
  $('[id$=txtFrom]').datepicker();
});

如果要添加范围,则无需使用{} ,然后尝试以下代码:

$('[id$=txtFrom]').datepicker({
        onSelect: function (selectedDate) {
            $('[id$=txtTo]').datepicker("option", "minDate", selectedDate);
        }
    });

    $('[id$=txtFrom]').datepicker({
        onSelect: function (selectedDate) {
            $('[id$=txtFrom]').datepicker("option", "maxDate", selectedDate);
        }
    });
于 2013-08-08T10:47:09.747 回答
0

删除{}_

$("#txtto").datepicker({});

我认为。

于 2013-08-08T10:41:55.617 回答