我的站点中有用于 ajax 加载的代码
if (base === 'basic') {
$.ajax({
url: location,
data: {},
success: function (result) {
document.title = titlepage;
window.history.replaceState(null, null, url);
$('#content').empty();
$('#content').html('');
$("#content").html(result);
}
});
} //if base
一切都在它上面工作,但不是
$('#content').empty();
$('#content').html('');
我怎样才能清除所有内容
<div id="content">
这样我就可以在上面加载新东西了吗?里面还有很多其他的 div 和其他代码。