我有一个网站,打开使用jQuery的对话
function showDialogUser(url, options){
if (!$('#myDialogUser').dialog('isOpen')) {
$("#mydialogUser").dialog("close");
}
options = options || {};
var tag = $('#myDialogUser');
//This tag will the hold the dialog content.
$.ajax({
url: url,
type: (options.type || 'GET'),
beforeSend: options.beforeSend,
error: options.error,
complete: options.complete,
success: function(data, textStatus, jqXHR) {
if(typeof data == "object" && data.html) { //response is assumed to be JSON
tag.html(data.html).dialog({modal: options.modal, title: data.title, height: 550, width: 1000}).dialog('open');
} else { //response is assumed to be HTML
var matches = data.match(/<title>(.*?)<\/title>/);
var spUrlTitle = matches[1];
tag.html(data).dialog({modal: true, title: spUrlTitle, height: 560, width: 1000}).dialog('open');
}
$.isFunction(options.success) && (options.success)(data, textStatus, jqXHR);
}
});
}
它加载一个包含谷歌的AdSense代码中的另一个page.asp文件。
问题是,它不显示广告。
当我尝试访问我的浏览器page.asp广告出现。
我该怎么做 ? 我尝试了几种方法,但它没有工作
谢谢