我有一个表,其中有一列使用 Oracle DB 中的时间戳变量。我不确定如何使用 JQuery 从 SQL 查询中定义我的 var“计划时间”并运行条件。我基本上将列时间戳与系统时间进行比较并返回行背景颜色。
附言。我的表在 aspx 页面内
// declaring the time
var currentTime = new Date();
var scheduledTime = "not sure how to declare the variable from my dynamic table"
// variables for the table
var rows = document.getElementById('ewGrid').getElementbyTagName('tr');
// style class
.rowRed {background-color:red; color:white;}
.rowYellow {background-color:red; color white}
$('tr').each(function() {
// if value is a number and less then zero
if (currentTime - scheduledTime) >15mins<=30mins ) {
tr = $(this).parent();
tr.addClass("rowRed");
}
});
感谢您的帮助