gpt4 book ai didi

asp.net jquery 日期选择器错误

转载 作者:行者123 更新时间:2023-12-01 03:28:27 25 4
gpt4 key购买 nike

我也在 aspx webform 中成功使用了带有屏蔽输入插件的 jquery datepicker。我注意到一个错误:当我通过在日历上选择日期来插入日期然后尝试手动修改它时,日期突然消失了。

你见过这种行为吗?

最佳答案

使用Jquery 1.3.1UI 1.7.x一切都很好,但是如果您使用1.4.2UI 1.8.x 你遇到了你所描述的错误。

<html>
<head>
<title></title>
<!--<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js" type="text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/base/jquery-ui.css" type="text/css" rel="Stylesheet" />-->

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/jquery-ui.min.js" type="text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7/themes/base/jquery-ui.css" type="text/css" rel="Stylesheet" />


<script type="text/javascript" src="http://jquery-joshbush.googlecode.com/files/jquery.maskedinput-1.2.2.min.js"></script>
<script type="text/javascript">
$(function() {
$("#masktest").mask("99/99/9999");
$("#masktest").datepicker();
});
</script>

</head>
<body>
<p>Date: <input id="masktest" type="text" value="01/01/2010" /></p>
<p>Other field: <input id="other1" type="text" value="" /></p>
<p>Other field 2: <input id="other2" type="text" value="" /></p>
</body>
</html>

关于asp.net jquery 日期选择器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2807147/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com