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 $("#textinput").val("evil"); then alert("Watch your language!"); end if
このコード行は、入力の値を設定します
$("#textinput").val("evil");
現在のテキストをテストしたいと言いました
if ($("#textinput").val() === "evil") { alert("Watch your language!"); }