我在使用 jQuery 的弹出框中使用 iframe。iframe
每次我必须在该特定框架中加载不同的页面时,我都需要更改和。
如何在iframe
不使用add_admin menu
选项的情况下在这些页面中包含 WordPress 功能?
这是 jQuery:
jQuery(function () {
jQuery('#start').click(function() {
jQuery('#popup_container').css('display','block');
jQuery('#popup_back').css('display','block');
jQuery('<iframe />', {
id: 'contentIframe',
'class': 'iframe_container',
frameborder: "0",
scrolling: "no",
marginheight: "0",
marginwidth: "0",
src: main_path+"box.php"
}).appendTo('#iframe_cont');
jQuery(".dashboard_tital").focus();
console.log('ok');
});
});