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。每当我从文本字段中跳出时,我希望 html(在 div 容器内)进行更改。我看到很多使用带有表单的 AJAX 的问题/教程,但在文本字段或复选框等单个组件上却没有。
您可以使用纯 JQuery 来完成。假设您的表单元素的 ID 为 my_element:
$("#my_element").blur(function(){ $.ajax({url: '/my/data', type: 'GET'}) .done(function(response){ $("#my_div").html(response); }) })