jQuery を使用してポップアップボックスで iframe を使用しています。iframe
その特定のフレームに別のページをロードする必要があるたびに、 andを変更する必要があります。
オプション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');
});
});