简体   繁体   中英

calendar in jQuery datapicker not showing

the original format for the datapicker is not showing at all, all i am seeing is just the text and numbers no design.

here is my jQuery code:

$(document).ready(function () {
    $("#datepicker").datepicker({
        showOn: "button",
        buttonImage: "http://www.byui.edu/prebuilt/stylenew/images/interface/icon_calendar_18x18.jpg",
        buttonImageOnly: true
    });
});

When I run this in my browser it shows the calander when i click the button but there is no image on the calander just the prev and next words and the dates in numbers.

You are not including jquery-ui.css

<link rel="stylesheet" type="text/css" 
     href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">

fiddle Demo

$(document).ready(function () {
    $("#datepicker").datepicker({
        showOn: "button",
        buttonImage: "http://www.byui.edu/prebuilt/stylenew/images/interface/icon_calendar_18x18.jpg",
        buttonImageOnly: true
    });
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM