我想更新特定的div
- 不是完整的 html 页面。当我运行以下代码时,它可以正常工作,但它会重新加载整个 html。此外,我使用不同的布局,例如我在不同的文件中有header
, layout
, 。footer
$(document).ready(function() {
setTimeout( function(){
$.ajax({
url: 'http://localhost:3002/jrt/?jId=$data.jacket.id',
method: "GET",
cache: false,
success: function(data) {
//$("#gt").append(data);
$( '#gt' ).html( data );
},
error: function(jqXHR, textStatus, errorThrown) {
alert('error ' + textStatus + " " + errorThrown);
}
})
},10000);
})