现场描述:
我们在做查询时经常会出现内外滚动条,业务操作起来比较不方便.
解决:
1、修改IFRAME
<IFRAME name="result" frameborder="0" width="100%" height="330" style="height:expression(1);aho:expression(autoResize())" scrolling="no" marginheight="0" marginwidth="0" ></IFRAME>
2、JS
function autoResize(){
try{
document.all["result"].style.height=result.document.body.scrollHeight
}catch(e){}
以上供大家参考。