Jquery UI DatePicker CSS Files



我开始在我的页面中集成jquery ui datepicker。

包含了js文件:

jquery-1.5.1.js
jquery.ui.core.js
jquery.ui.widget.js
jquery.ui.datepicker.js

和CSS文件:

jquery.ui.datepicker.css

但是它导致了没有背景的datepicker…

我错过了什么?

手动添加后:.ui-datepicker{background-color: silver;}

显示如下:

http://outsourcingnepal.com/general-images/shot1.jpg

检查datepicker.css是否有缺少背景的元素的样式定义。如果没有,请在firebug(或类似工具)中检查元素并添加自己的样式。可能已经有了一个类,所以只需在样式表中添加样式,或者将其添加到detepicker.css中。

再次解包所有文件解决了…我希望有些文件丢失了

对于只对DatePicker进行样式化,这些是必需的样式表文件:

~/Content/themes/base/jquery.ui.core.css
~/Content/themes/base/jquery.ui.datepicker.css
~/Content/themes/base/jquery.ui.theme.css

或缩小的

<link rel="stylesheet" href="../Content/themes/base/minified/jquery.ui.core.min.css" />
<link rel="stylesheet" href="../Content/themes/base/minified/jquery.ui.theme.min.css" />
<link rel="stylesheet" href="../Content/themes/base/minified/jquery.ui.datepicker.min.css" />

相关内容

  • 没有找到相关文章

最新更新