在javascript中添加滚动条

时间:2012-07-20 15:20:46

标签: javascript html

已成功使用此站点中的脚本添加独立窗口。它没有滚动条。我该如何添加它们。脚本是:

<a href="#"
onClick="window.open(
  'popup.php?message=<?php echo $Url; ?>',
  'myWindow', 
  'status = 1, height = 350, width = 1022, resizable = 0'
)"
class="bstyle">
  E
</a>

如果你能提供帮助,将不胜感激。 问候 艾伦布朗

2 个答案:

答案 0 :(得分:3)

您需要将scrollbars = 1添加到window.open的第三个参数:

<a href="#"
onClick="window.open(
  'popup.php?message=<?php echo $Url; ?>',
  'myWindow', 
  'status = 1, height = 350, width = 1022, resizable = 0, scrollbars = 1'
)"
class="bstyle">
  E
</a>

答案 1 :(得分:1)

在通话中添加scrollbars=1

<a href="#" onClick="window.open('popup.php?message=<?php echo $Url; ?>', 'myWindow', 'status=1,height=350,width=1022,resizable=0,scrollbars=1' )" class="bstyle">E</a>