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.
是否可以在用户完成文本输入后立即加载 jquery 函数(不是在表单提交时)?
这似乎不起作用:
<? if (isset($_POST['textinput'])) {echo "loadjqfunction()";} ?>
谢谢。
这应该完全在 Javascript 中完成:
$("#textinput").change(loadjqfunction);