我使用jQuery在弹出框中使用iframe。我需要更改iframe
,每次我必须在该特定帧中加载不同的页面。
如何在iframe
内的这些页面中包含WordPress功能,而不使用add_admin menu
选项?
这是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');
});
});