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>
I'm having trouble converting a list object back to its original type without an explicit cast. My intention is to generalize methods so I could pass in different db Types such