在jQuery 中比較字串是否相等有多種方式,以下是其中幾種常用的方法:
var str1 = "hello"; var str2 = "world"; if(str1 === str2){ console.log("字符串相等"); }else{ console.log("字符串不相等"); }
var str1 = " hello "; var str2 = "world"; if($.trim(str1) === str2){ console.log("字符串相等"); }else{ console.log("字符串不相等"); }
var str1 = $("div#div1").text(); var str2 = "world"; if(str1 === str2){ console.log("字符串相等"); }else{ console.log("字符串不相等"); }
var str1 = $("input#input1").val(); var str2 = "world"; if(str1 === str2){ console.log("字符串相等"); }else{ console.log("字符串不相等"); }
總之,在 jQuery 中比較字串是否相等的方法有很多,需要根據使用場景和需求選擇適合的方法。
以上是jquery中怎麼比較字串是否相等的詳細內容。更多資訊請關注PHP中文網其他相關文章!