数据贴纸的原始格式根本没有显示,我所看到的只是文字和数字没有设计。
这是我的jQuery代码:
$(document).ready(function () {
$("#datepicker").datepicker({
showOn: "button",
buttonImage: "http://www.byui.edu/prebuilt/stylenew/images/interface/icon_calendar_18x18.jpg",
buttonImageOnly: true
});
});
当我在浏览器中运行它时,它会在我点击按钮时显示calander但是calander上没有图像只有prev和下一个单词以及数字中的日期。
答案 0 :(得分:1)
您未加入jquery-ui.css
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
$(document).ready(function () {
$("#datepicker").datepicker({
showOn: "button",
buttonImage: "http://www.byui.edu/prebuilt/stylenew/images/interface/icon_calendar_18x18.jpg",
buttonImageOnly: true
});
});