1

伙计们,

我们有一个奇怪的要求,我们想在 IFRAME 中禁用双击。

这里的复杂之处在于 HTML 响应来自远程 URL,我们无法控制它。是否可以在此 IFRAME 中禁用双击。

例如

iframe src="http://removeserver/view.jsp" height="300px" width="300px">

注意:我们已经调查过了,似乎因为跨端脚本我们不能这样做。基本上我们不能访问页面 remoteserver/view.jsp 的 HTML 元素,因为它来自远程网站。

任何帮助将不胜感激。

4

1 回答 1

2

iframe 上方的空 div 将禁用对 iframe 内容的任何鼠标操作 http://jsfiddle.net/uxUF8/63/

<iframe with="300" height="300" src="https://www.youtube.com/embed/OsOYg5gpS0s" ></iframe>
<div style="position:absolute;margin-top:-300px;width:300px;height:300px;border:1px solid red;" ></div>

另一个版本允许您在http://jsfiddle.net/uxUF8/62/内滚动

于 2013-09-30T12:54:43.823 回答