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!"); }