如何在不使用in 的情况下将Calender Control添加到.Textbox
ajaxtoolkit
asp.net
问问题
13661 次
3 回答
1
您可以使用以下 jquery 和代码执行此操作:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$("#txtStartDate").datepicker();
$("#txtEndDate").datepicker();
});
</script>
// 在上面的代码中 txtStartDate 和 txtEndDate 是你的文本框的 id
于 2013-02-08T09:07:46.453 回答
0
使用 jquery 添加日历怎么样?
于 2013-02-08T08:49:04.840 回答
0
试试这段代码...
代码:
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" /></p>
</body>
</html>
于 2013-02-08T09:38:43.057 回答