我正在努力实现这个目标: 如果特定行上缺少任何数据,我希望您将该行设置为TWICE一样高并且有下划线。任何人都可以建议我如何做到这一点。我的条件是
if (row["Post_Converted"] || row["StatusDesc"] || row["RowVersionInitials"]) = null{
// add table border for that particular row
}
请提示我一些想法
答案 0 :(得分:0)
使用==
进行比较,每个值都需要自己的值进行比较。我建议你先学习一下JavaScript的基础知识。
if (row["Post_Converted"] == null || row["StatusDesc"] == null || row["RowVersionInitials"] == null) {
// add table border for that particular row
}