我的数组在外部js文件中。我不知道如何隐藏
theString=theString+'<b>Random day of the week:</b> '+getRandomDayoftheweek(i)+'<br><br>';
&#13;
如果记录为空
我已经看到一堆关于如何检查它是否为空的答案我想要隐藏文本&#34;随机的一周中的某一天&#34;所有在一起
答案 0 :(得分:0)
是的,所以我能够弄清楚。现在看起来很简单,但这是以防其他人有这个问题。
if (getRandomDayoftheweek(i)!=="") {
theString=theString+'<b>Random day of the week:</b> '+getRandomDayoftheweek(i)+'<br><br>';
}