在JavaScript 中檢查空字串
在JavaScript 中,可以透過幾種不同的方式來確定字串是否為空或未定義。
空虛且虛假字串
要檢查字串是否有任何內容(包括空字串「」),請使用真/假值檢查:
if (strValue) { // strValue is non-empty string, true, 42, Infinity, [], ... } if (!strValue) { // strValue is empty string, false, 0, null, undefined, ... }
嚴格僅空字串
如果您想專門檢查空字串(""),請使用嚴格相等運算子 ===:
if (strValue === "") { // strValue is empty string }
或者,使用 !== 運算子檢查非空字串:
if (strValue !== "") { // strValue is not an empty string }
以上是如何在 JavaScript 中檢查空字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!