Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
注意到我的 if 语句中带有“&”符号的所有内容都不起作用。我该如何解决?
if(id == 'EX&219'){ //do someting }
这行不通。很高兴有任何帮助:)
完美工作
var id = 'EX&219'; if(id == 'EX&219'){ alert("equals"); } else { alert("not equal"); }
参考
您是什么意思“我的 if 语句中带有“&”符号的所有内容都不起作用”?
尝试这个
if(id == 'EX'+String.fromCharCode(38)+'219'){ //do someting }
38 是 '&' 字符的字符代码,如果您不希望 '&' 出现在您的语句中。
http://www.w3schools.com/jsref/jsref_fromCharCode.asp