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(itemid){ expandHighlight(itemid); } function expandHighlight(itemid){ alert(itemid); }
確かに、正常に機能しますが、itemidの値が「0」(int)の場合、何も起こりません。警告はありません、ただ通知しないでください...何かアイデアはありますか?
それは偽りであり、関数if ("0")を呼び出さないためです。expandHighlight
if ("0")
expandHighlight
どちらかをifより賢明にしてください:
if
if(itemid !== undefined)
または完全に削除します