gpt4 book ai didi

jquery - 获取 currentRowindex 如何获取开始时间和结束时间

转载 作者:行者123 更新时间:2023-12-01 04:18:13 27 4
gpt4 key购买 nike

JS fiddle

这是我的 jsfiddle 获取 currentRowindex 如何获取开始时间和结束时间。 用户可以拖动类(第 7、第 8、第 9..)单元格并选择时间。用户已限制不能选择超过 3 个单元格 我正在获取 currentRowindex。如何使用 rowIndex 获得时间。

 var currentRow1 = $('.csstdhighlight').closest('td').parent()[0].sectionRowIndex;

最佳答案

这确实是一个肮脏的编码,但解决了你的问题..

firstMin = $(".csstdhighlight").closest('tr').eq(0).find('td').eq(1).text().trim();
for(i=0;i<4;i++) {
var firstResult = $('#tableAppointment tr').eq(rowIndex-i).find('td').eq(0).text().trim();
if(firstResult !="") {
firstHour = firstResult.replace(":00AM","").replace(":00PM","").trim();
}
}
lastMin = $('#tableAppointment tr').eq(lastRow).find('td').eq(1).text().trim();
for(i=0;i<4;i++) {
var lastResult = $('#tableAppointment tr').eq(lastRow-i).find('td').eq(0).text().trim();
if(lastResult !="") {
lastHour = lastResult.replace(":00AM","").replace(":00PM","").trim();
}
}
alert("[" + firstHour + ":" + firstMin + "] - [" + lastHour + ":" + lastMin + "]");

玩过你的演示版.. http://jsfiddle.net/BerkerYuceer/Ybp4m/

您可以从这里根据您的需求改进它..

关于jquery - 获取 currentRowindex 如何获取开始时间和结束时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13027425/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com