0

我有一个表,其中有一列使用 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");
 }

 });

感谢您的帮助

4

1 回答 1

0

unix 时间戳的精度为秒,因此转换为毫秒并传递给 Date 构造函数:

var scheduledTime = new Date(unixtimestamp*1000)
// where unixtimestamp is the timestamp you get from the database 
于 2013-01-08T17:22:43.800 回答