-2
有一個代碼。我並不需要得到整個頁面,而只用ID CONTA容器(#CONTA)從Ajax獲取容器的內容
$.ajax({
url: fileID
}).success(function (data) {
$('.portfolio-detail').addClass('open-box');
$('.portfolio-detail').html(data);
$('.portfolio-detail').removeClass('closed-box');
$('.close-detail').click(function() {
$('.portfolio-detail').addClass('closed-box');
$('.portfolio-detail').removeClass('open-box');
$('html,body').animate({
scrollTop: $('#portfolio').offset().top - 68
}, 500);
setTimeout(function() {
$('.portfolio-detail').html('');
}, 1000);
});
});
什麼是你的問題? –
您的問題不清楚,請正確說明\ –