以下を使用して、ブックマークレットから iframe をロードしています。
javascript:(function(d){
var%20modal=document.createElement('iframe');
modal.setAttribute('src','http://myurl.com/page.html?url=
'+encodeURIComponent(window.location.href)+'&
page_title='+document.title);
modal.setAttribute('scrolling','no');
modal.className='modal';
document.body.appendChild(modal);
var c=document.createElement('link');
c.type='text/css';
c.rel='stylesheet';
c.href='//myurl.com/css/wl_iframe.css';
document.body.appendChild(c);
}(document));
そしてそれを閉じるために私はしようとしています:
<button onclick="parent.$.iframe.close();">X Close Window</button>
私も試しました:
<button onclick="modal.$.iframe.close();">X Close Window</button>
しかし、彼らは働いていません、彼らは何もしません。
私は使用できることを知っています:
<a href="underneath url" target="_parent">X Close Window</a>
ただし、これにより、ブラウザは表示していたページを再更新し、ユーザーはページに戻る前に戻るボタンを 2 回押す必要がありますが、これは理想的ではありません。
何か案は?