jQuery UI DatePicker theme

jQuery UI DatePicker theme

本文关键字:theme DatePicker UI jQuery      更新时间:2023-09-26

我想知道在使用DatePicker覆盖显示页面中的任何CSS时,是否有一种方法,只需显示默认的纯主题。我只想要一个基本的灰色日历,但DatePicker似乎在从我的网站上提取元素。我使用的代码如下

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">  
<script src="//code.jquery.com/jquery-1.10.2.js"></script>  
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>  
<script>
$(function(){
$( "#datepicker" ).datepicker({ dateFormat: 'dd-mm-yy' });  
});  
</script>

我无法上传我的日历图片(因为我没有足够的信誉点),但基本上一周中的日期(m、T、W、T、F、S、S)背景是深绿色,文本是红色。日期上下的间距也很大。我希望在上面的代码中有一种快速简单的方法来格式化它。

提前谢谢。

请在控件中添加一个空类,该类用于日期选择器,并在jquery 中使用该类

<input type="text" class="dateinput"/>

在script标记中,它应该被写为$(函数(){$('.dateinput').datepicker({dateFormat:'dd-mm-yy'})
});