使用 jquery-ui 更改 datepicker 的样式
如何使用 jquery-ui 的 css 文件更改日历的样式?
<input type="text" id="dob"/>
这是脚本,
$(document).ready(function(){
$("#dob").datepicker();
});
这里是示例 http://jsfiddle.net/zncSh/2/ ?
如何将其格式化为这样的 http://jqueryui.com/demos/datepicker/ ? ?
我应该在哪里添加 css 类?
How can I change the style of the calender using the css files of jquery-ui?
<input type="text" id="dob"/>
here is the script
$(document).ready(function(){
$("#dob").datepicker();
});
here's the example http://jsfiddle.net/zncSh/2/ ?
how can I format it to be like this http://jqueryui.com/demos/datepicker/ ??
where should I add the css class ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要链接到主题文件,可以链接到预设文件之一,也可以使用 主题滚轮 创建一。您应该阅读jQuery UI 主题如何工作。
这是列出远程存储库的帖子:
从 Google 的 CDN 下载 jQuery UI CSS
我修改了您的 jsfiddle 以包含基本主题: http://jsfiddle.net/zncSh/3/
You want to link to a theme file, either to one of the preset ones or use the theme roller to create one. You should have a read at how jQuery UI themes work.
Here's the post that list the remote repositories:
Downloading jQuery UI CSS from Google's CDN
I modified your jsfiddle to include the base theme: http://jsfiddle.net/zncSh/3/