想把"js"的"ajax"返回的内容付给整个"html",怎么做?

2025-01-02 19:53:32
推荐回答(1个)
回答1:

$.ajax({
    url: YourUrl
}).done(function(rs){
   document.write(rs); 
});