我们正在尝试将HTML内容放在jquery日期选择器单元格上。我们这样做但是它没有正常工作,当我们选择那天时,然后文本框显示NAN。
http://jsfiddle.net/cqf9d/2802/
IQualifiedNameConverter
请告诉我们做错了什么。
答案 0 :(得分:1)
试试这个 -
function addCustomInformation() {
setTimeout(function() {
$(".ui-datepicker-calendar td.Highlighted").filter(function() {
var date = $(this).text();
console.log(date);
return /\d/.test(date);
}).append($('#dataDiv').html()).find("a").hide(); // Add custom data here
// }).find("a").attr('data-custom', $('#dataDiv').html()); // Add custom data here
}, 0)
}
JSFiddle此处