我们目前希望在 ajax 加载更多之后加载广告。但是该广告调用响应包含 document.write,并且在调用后重定向到广告本身。没有仅获取广告 html 并附加它的方法。所以我们必须在ajax中处理document.write成功。我看到了一些关于 iframe 的东西,但我真的不知道我应该如何实现它。
$.ajax({
.
.
.
success: function( response ) {
var loadedAd = ad call here; -- but it redirects to the ad itself due to the document.write in ad response.
谢谢。