我想获取网页产品的到期时间,并使用javascript日期方法将其更改为unix时间。...
var expiration = document.querySelector('span#bigDealTimer1');
//with this selector I can get the time-counter.
expiration = expiration && expiration.innerText;
如何将跨度中的到期时间更改为Unix时间?(时间减少到零)
尽管我不知道日期/时间将采用哪种格式,但是可以使用标准的Date
库将字符串日期值解析为UNIX时间戳。
const unixTimeZero = Date.parse('01 Jan 1970 00:00:00 GMT');
Ref-https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse