bbPress返信部画面のdivタグidを上から順次取得し、id名をコンソール表示されています。
ソースは下記で、対象の画面は添付ファイルとなります。
qt_bbp_reply_content_toolbarまでは順次取得出来ましたがmceu_13よりundefinedです。
何故、この先から取得できないのかご教授を頂きたく宜しくお願い致します。
JavaScript
1<script> 2jQuery(function($){ 3 console.log('-------------'); 4 var hoge; 5 hoge = $('#wp-bbp_reply_content-wrap'); 6 console.log(hoge.attr('id')); 7 hoge = $('#wp-bbp_reply_content-editor-container'); 8 console.log(hoge.attr('id')); 9 hoge = $('#qt_bbp_reply_content_toolbar'); 10 console.log(hoge.attr('id')); 11 hoge = $('div#qt_bbp_reply_content_toolbar.quicktags-toolbar'); 12 console.log(hoge.attr('id')); 13 hoge = $('div#mceu_13.mce-tinymce.mce-container.mce-panel'); 14 console.log(hoge.attr('id')); 15 hoge = $('div#mceu_13'); 16 console.log(hoge.attr('id')); 17 hoge = $('#mceu_13'); 18 console.log(hoge.attr('id')); 19 console.log('-------------'); 20}); 21</script>
<備考>
iframe#id=bbp_reply_content_ifr内のBodyへStyle適用させるつもりですが、
その前で頓挫しております。
回答1件
あなたの回答
tips
プレビュー