我使用这个简单的 Jquery 代码从 div 中获取元素,然后通过 php 脚本对其进行更改:
$(document).ready(function(){
$("#description").keyup(function(){
var recherche = $(this).val();
$.ajax({
type : "GET",
url : "result.php",
data : {motclef: recherche},
success: function(server_response){
$("#resultat").html(server_response).show();
}
});
});
});
问题是可以在不按任何键(复制/过去...)的情况下发生一些更改。我曾尝试使用 .change() 但它仅在元素焦点丢失时触发。