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>