1

在我的应用程序中,我有一个包含一些日志文件内容的 iframe。因为我总是对最新的日志感兴趣。我总是想将滚动条保持在底部。我怎样才能实现它。

    <IFRAME src="/results/show_client_log?testinstanceId=<%=params[:testinstanceId]%>&clientIp=<%=params[:clientIp]%>" id= "frame" style="width:100%;" height=500px scrolling="yes"></IFRAME>

这是启用滚动条到 iframe 的代码。

4

1 回答 1

-1

Does adding this to style section in your iframe work?

overflow: auto;

or maybe even

overflow-x:scroll;

or

overflow-y:scroll;
于 2013-11-10T16:35:26.517 回答