我目前正在将数据从Google表格中提取到我网站的表格中。如果TD为空,我希望能够隐藏TR。我已经可以使用它了,但是由于我是使用ID从Sheets插入的,因此无法正常工作-我猜它不知道表中是否有数字。
我目前正在使用它,如果单元格为空,它将隐藏行。
$('.hidetable tr:has(td:empty)').hide();
我使用id从工作表中提取数据:
<td id="podiumt"></td>
如果下面的样式将其转换为数字,是否应该正常工作?
我也正在使用它对导入的号码应用一些样式:
let divs = Array.prototype.slice.call(document.querySelectorAll("podiumt"));
// Loop the array
divs.forEach(function(div){
// Convert text to number and test for positive/negative
if((+div.textContent) >= 0){
div.classList.add("positive"); // Apply positive style
div.textContent = "+" + div.textContent;
} else {
div.classList.add("negative"); // Apply negative style
}
});
});