0

我无法让滚动条出现在以下代码中的弹出窗口中:

scrollable=yes在网上阅读了相同问题的一些解决方案后添加了,但仍然无法这样做。

print("<div id ='tableStatusReasons'>
                   <a href='#' style='color: ".$colorv."' onClick=\"window.open('volumeReport.php?case=".$case."&patient=".$patientID."','mywin','width=630,height=500,resizable=yes,scrollable=yes')\"><div class='volumeReport'><b>Volume Report Table</b><br>Status:   ".$vStatus." <br>Reason:   ".$vComment."</div></a>");
            print("<a href='#' style='color: ".$colors."' onClick=\"window.open('statsReport.php?case=".$case."&patient=".$patientID."','mywin','width=1400,height=650,resizable=yes,scrollable=yes')\"><div class='statisticsReport'><b>Statistics Report Table</b><br>Status:   ".$sStatus."<br>Reason:   ".$sComment."</div></a></div>");
4

1 回答 1

1

您可以尝试使用 CSS 添加滚动条。

 <a href='#' style='color: ".$colorv."; overflow:scroll-y' ...
于 2013-07-03T20:06:15.460 回答