嗨,我发了这两个标签
<input type="text" name="aav" class="aav"/>
<div id="aridc" class="aridc"></div>
在这种情况下
$(".aav").live("keyup",function(){
$.ajax({
type: "POST",
url: "recapVente.html",
cache: false,
data: "exp="+$(this).val()+" article",
success: function(reponse){
$(this+"~.aridc").empty();
$(this+"~.aridc").html(reponse);
},
error: function(e){
$(this+"~.aridc").empty();
$(this+"~.aridc").html("Votre recherche contien des erreurs");
}
});
});
选择 div 并确保它是输入之后的那个我这样做
$(".aav~.aridc")
但是当我这样做时
$(this+"~.aridc")
我没话可说
请如何使用
this
代替
.aav
这里
$(".aav~.aridc")
谢谢