簡體   English   中英

iframe模式無法關閉

[英]iframe modal failing to close

我使用從瀏覽器小書簽生成的iframe模式,從用戶正在查看的網頁上收集信息。

用戶添加到其書簽工具欄的代碼,該代碼在單擊時會觸發小書簽。

javascript:(function(d){var%20modal=document.createElement('iframe');modal.setAttribute('src','http://9ammusic.com/test/bookmarklet.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='//9ammusic.com/css/iframe.css';document.body.appendChild(c);}(document));

該代碼通過顯示問題的方式起作用

100的95倍可以正常工作,並且可以正常關閉,但是有時候,close鏈接根本不起作用-是否有其他/更好的方法可以關閉這種模式?

要進行測試,請轉到下面的鏈接並嘗試使用書簽-在Firefox中可以正常關閉,但在Chrome中無法關閉:

http://www.ebay.co.uk/itm/JEFF-BANKS-BESPOKE-BLACK-RED-PINSTRIPE-100-WOOL-MENS-SUIT-36S-DRY-CLEANED-/330789478348?_trksid=p5197.m1992&_trkparms=aid%3D111000%26algo%3DREC.CURRENT%26ao%3D1%26asc%3D14%26meid%3D1848697403629550114%26pid%3D100015%26prg%3D1006%26rk%3D1%26#ht_1830wt_1163

出於某種原因,這有效,使用表格而不是鏈接,對目前來說都很好:

<form method=post action=<?=$_GET['url']?> target="_parent">
<input type=submit value="X Close Window"></form>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM