我正在尝试使用来自 ajax html 响应的内容更新 div。我相信我的语法是正确的,但是 div 内容被替换为整个 HTML 页面响应,而不仅仅是在 html 响应中选择的 div。我究竟做错了什么?
<script>
$('#submitform').click(function() {
$.ajax({
url: "getinfo.asp",
data: {
txtsearch: $('#appendedInputButton').val()
},
type: "GET",
dataType : "html",
success: function( data ) {
$('#showresults').replaceWith($('#showresults').html(data));
},
error: function( xhr, status ) {
alert( "Sorry, there was a problem!" );
},
complete: function( xhr, status ) {
//$('#showresults').slideDown('slow')
}
});
});
</script>