如何在动态范围的元素上添加一个类 - jQuery

时间:2015-08-23 11:15:54

标签: javascript jquery html css

我正在努力使Date Range Pickerthis类似。

我尝试过使用像

这样的东西
     $('#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,在一个点之后停止突出显示元素。

请帮忙。

1 个答案:

答案 0 :(得分:-1)

你可以试试这个。

$( "#calendar-dates" ).mouseover(function() {
       // do something 
}).click(function() {
      // do something 
});