我想在共享点列表 datepicker 列中添加年份选项,因为它不允许选择年份,除非交换 12 个月,有人可以提出建议吗?
问问题
388 次
1 回答
0
没有选项,请改用jQuery Datapicker。
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true
})
更新:
将脚本插入您的列表表单(新论坛/编辑表单),将“时间”更新为您的字段标题。
<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="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.0/themes/base/jquery-ui.css" />
<script type="text/javascript">
$(document).ready(function () {
$('input[title="Time"]').datepicker({
changeMonth: true,
changeYear: true
})
$('input[title="Time"]').parent().siblings().hide();
});
</script>
于 2020-04-15T07:22:21.707 回答