我正在努力使Date Range Picker
与this类似。
我尝试过使用像
这样的东西 $('#calendar-dates').on('mouseover', 'td', function() {
if($(this).html() > window.start){
$(this).addClass("added");
}
});
$('#calendar-dates').on('click', 'td', function() {
window.start = $(this).html(); // get the number of the day
$(this).addClass("start"); // to mark it the date-selection start
});
我想要的是,如果我使用鼠标按钮horizontally
td
之后的this day
元素,请使用background-color
突出显示<{1}}
OR
如果我vertically
更改前一行的background-color
。
我已阅读有关slice
但我无法理解如何正确使用它。
同样使用mouseover
,在一个点之后停止突出显示元素。
请帮忙。
答案 0 :(得分:-1)
你可以试试这个。
$( "#calendar-dates" ).mouseover(function() {
// do something
}).click(function() {
// do something
});