如何抑制javascript异常?
在我的应用程序中,我获取了其他一些域页面的内容。它与内容一起运行与特定页面关联的 JavaScript。在 javascript 代码中,编写了“document.selection.createRange()”,该代码在 IE 中运行时抛出异常(因为在 IE 中,出于安全考虑,您无法更改 iframe 的数据,反之亦然)。
所以我的问题是如何抑制异常。 提前致谢 :)
In my application i am getting the content of some other domain's page. Along with the content it is running the javascript associated with the particular page. In the javascript code "document.selection.createRange()" is written which is throwing exception at run time in IE (since in IE due to security concern you can't change iframe's data or the reverse).
So my question is how to suppress the exception.
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 jQuery 中通过使用带有页面片段的 load 来执行此操作。
请注意,只有当其他域允许您的域通过 CORS http 标头。
You can do this in jQuery by using a load with a page fragment.
Be aware though that this will only work if the other domain allows your domain access via CORS http headers.