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:
<script> $(document).ready(function(){ $("form").submit(function(){ $("input").attr("disabled", true); return true; }); }); </script>