ajax html 応答からのコンテンツで div を更新しようとしています。構文は正しいと思いますが、div コンテンツは、html 応答で選択された div だけでなく、HTML ページ応答全体に置き換えられます。私は何を間違っていますか?
<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>