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.
に問題があり.on()ます。複数のフォーム要素 ( を含むフォーム) があり、 AJAX を使用してclass="remember"別の要素を追加します。form.rememberしたがって、送信イベントを次のように処理する必要があります。
.on()
class="remember"
form.remember
$('form.remember').on('submit',function(){...})
ただし、AJAX で追加されたフォームは機能しません。
問題はどこだ?バグですか?
同じ症状で困っていました。私の場合、送信機能に「return」ステートメントがないことが判明しました。
例えば:
$("#id_form").on("submit", function(){ //Code: Action (like ajax...) return false; })