我在 iframe 中有一个 div,当我们单击输入框时会出现该 div。
iframe 看起来像这样
<iframe src='mycontrol.html' width='300' height='50' />
下面是 mycontrol.html 的代码
<div>
<input type='text' />
<div style='height:80px;'>
This will be shown when we click in the above text box.
</div>
</div>
当用户单击输入框时,我有 javascript 来显示 div,问题是因为这个 div 的高度大于 iframe 的高度并且没有完全显示。由于 iframe,div 底部的某些区域被切割。
我的问题,有没有在不调整 iframe 大小的情况下使用 javascript 或 css 显示完整的 div ?