所以我想做的是使用datepicker通过文本框制作一个弹出日历。我面临的问题是日历根本没有弹出。
下面是我的代码:
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script type ="text/javascript" >
// <script type="text/javascript" language="javascript">
$(function () {
//initialise the datepicker with the date format specified
$(".datepicker").datepicker();
</script>
下一个:
<input id="txtSche1" type="text" CssClass="datepicker" readonly="readonly"/>
答案 0 :(得分:0)
所以我尝试了其他方法,但是这次我使用的是图像按钮,它起作用了
$(function () {
$("[id$=txtSche1]").datepicker({
showOn: 'button',
buttonImageOnly: true,
buttonImage: '../images/PopUpSmallCalendar.gif',
});
});
我还从文本输入中删除了该类
<input id="txtSche1" type="text" readonly="readonly"/>