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.
テキストフィールドからの onblur イベントで AJAX を使用できます。テキストフィールドからタブで移動するたびに、(div コンテナー内の) html を変更したいと思います。テキストフィールドやチェックボックスなどの個々のコンポーネントではなく、フォームで AJAX を使用する多くの質問/チュートリアルを目にします。
プレーンな JQuery を使用して実行できます。フォーム要素の ID が my_element であると仮定します。
$("#my_element").blur(function(){ $.ajax({url: '/my/data', type: 'GET'}) .done(function(response){ $("#my_div").html(response); }) })