我有一个带有“scrolling="no"" 的 iframe 和一个在需要时将 iframe 属性设置为 scrolling="yes" 的按钮。
$("#button3").click(function(){
$( "#iframe_id" ).attr( "scrolling", "yes" );});
但是滚动条没有出现,当我按下按钮3时,只有在我刷新 iframe 之后。如何强制 srcoll 条立即出现?
现在如何工作:http: //jsfiddle.net/77van/k8GhZ/1/