我在saleforce页面上有一个iframe,我需要在iframe中禁用鼠标点击。这可能吗?
这是我的代码
<apex:page id="peprtgdash">
<apex:form >
<iframe height="900px" id="pedash" name="pedash" src="http://www.site.com" width="100%" scrolling="false"></iframe>
</apex:form>
</apex:page>
site.com不是真正的src它只是我放入的东西没有我的信息在那里。
答案 0 :(得分:2)
试试这个:
<apex:page id="peprtgdash">
<apex:form >
<div id="wrapper" style="position: relative;">
<div id="block" style="position: absolute; top: 0; left: 0; width: 100%; height: 900px"></div>
<iframe height="900px" id="pedash" name="pedash" src="http://www.site.com" width="100%" scrolling="false"></iframe>
</div>
</apex:form>
</apex:page>
答案 1 :(得分:1)
您需要将div
设置为iframe
。因此,div
追踪iframe
:
...
<iframe height="900px" id="pedash" name="pedash" src="http://example.com" width="100%" scrolling="false"></iframe>
<div id="block" style="position: absolute; top: 0; left: 0; width: 100%; height: 900px"></div>
...