Breaking out of Iframe in Docusign

☆樱花仙子☆ 提交于 2019-12-29 09:16:08

问题


I am using Iframes to render the embedded Docusign document. I was successfully able to sign the document in the Iframe and get redirected to my specified URL after signing.

But the Redirect URL is displayed inside the IFrame. I need to breakout of iframe and display in parent page.

I have tried the following code snippet but to no avail.

1) th:target="_parent" in the iframe tag

2) if (top !== self) top.location.href = self.location.href;


回答1:


I was able to find solution for that. I just needed to catch the Docusign redirect in the Iframe and hide it.

 <iframe id ="docusignFrame" name="docusignFrame" th:src="${docusignURL}" width="100%" height="900" onLoad="(this.contentWindow.location != '' ? DocusignCompleted(this.contentWindow.location) : void(0));">
</iframe>
<script>
function DocusignCompleted(url) {
                $("#docusignFrame").hide();}
</script>


来源:https://stackoverflow.com/questions/44951027/breaking-out-of-iframe-in-docusign

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!