日期:2014-05-16 浏览次数:20331 次
单月查询:<input type="radio" onclick="return sign();" name="select" /> 多月查询:<input type="radio" onclick="return more();" name="select" /> 查询日期: <span> <asp:DropDownList runat="server" ID="ddlYear"> </asp:DropDownList> <asp:DropDownList runat="server" ID="ddlMonth"> </asp:DropDownList> </span> <span id="endDate">—— <asp:DropDownList runat="server" ID="ddlYearEnd"> </asp:DropDownList> <asp:DropDownList runat="server" ID="ddlMonthEnd"> </asp:DropDownList> </span>
<script type="text/javascript" language="javascript"> function sign() { var newSpan = document.getElementById("endDate"); newSpan.style.display = "none"; } function more() { var newSpan = document.getElementById("endDate"); newSpan.style.display = "block"; } </script>