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.
そのフォームの外に送信ボタン()を付けてgrailsフォーム()を送信することは可能ですか?単純な HTML ページの JavaScript でも同じことができることはわかっています。私は grails (gsp ページ) に比較的慣れていないため、新しいタグを知るのに苦労しています。
前もって感謝します。
よろしく、アミット
jquery を使用して、次のようにフォーム タグの外側にフォームを送信できます。
<button class="some-class" onclick="jQuery('#formId').submit()">Submit</button>
プログラミングを楽しもう..