我正在尝试将此mootools更改为jquery但我没有找到等效的,问题在于: onSuccess:function(texto,xmlrespuesta){$('divrespuesta2')。set('html' ,texto);
Motools
function searchTopics(){
document.getElementById("divrespuesta3").innerHTML="";
document.getElementById("divInicio").innerHTML="";
buscador = $('txtbuscar').value;
var nuevoRequest = new Request({
method: 'POST',
url: '../path/controller.php',
data: 'search='+search,
onRequest: function() {$('divrespuesta2').innerHTML="Cargando...";},
onSuccess: function(texto, xmlrespuesta) {$('divrespuesta2').set('html',texto);
}
的jQuery
function searchTopics(){
$('#divrespuesta3').html("");
$('#divInicio').html("");
buscador = $('#txtbuscar').val();
$.ajax({
type: "POST",
url: '../path/controller.php',
data:'search='+search,
beforeSend:function(){},
success: function(response){
$('#divrespuesta2').set('html', response);
}
});
}
答案 0 :(得分:4)
$("#divrespuesta2").html(response);