javascriptでウィンドウを開いて操作してみたかったので試してみました
openして値をとって、書き出してみます
child.htmlを用意しておいて、
call_child()で、新しいウィンドウをオープン、
get_child_title()だと、h1の下にpタグで、child.htmlのh1タグのテキストを追記するようになります
<script type="text/javascript">
var child_window;
function call_child() {
child_window = window.open('child.html', 'child', 'width=400, height=300, menubar=no, toolbar=no, scrollbars=no');
}
function get_child_title() {
var h1 = child_window.document.getElementById('title');
var this_h1 = document.getElementById('title');
this_h1.insertAdjacentHTML('afterend', '<p>'+h1.textContent+'</p>')
}
</script>
Firefoxで試しました
Chromeだと、クロスオリジンとかって怒れられて動きません
狩野 祐東 SBクリエイティブ 2015-10-30