js控制滚动条
JS中open()函数介绍
window=object.open([URL ][, name ][, features ][, replace]]]])
返回值:⼀个窗体对象
  URL:新窗⼝的URL地址
  name:新窗⼝的名称,可以为空
  featurse:属性控制字符串,在此控制窗⼝的各种属性,属性之间以逗号隔开。
  fullscreen={ yes/no/1/0 }是否全屏,默认no
  channelmode={ yes/no/1/0 } 是否显⽰频道栏,默认no
  toolbar={ yes/no/1/0 } 是否显⽰⼯具条,默认no
  location={ yes/no/1/0 } 是否显⽰地址栏,默认no
  directories = { yes/no/1/0 } 是否显⽰转向按钮,默认no
  status={ yes/no/1/0 } 是否显⽰窗⼝状态条,默认no
  menubar={ yes/no/1/0 } 是否显⽰菜单,默认no
  scrollbars={ yes/no/1/0 } 是否显⽰滚动条,默认yes
  resizable={ yes/no/1/0 } 是否窗⼝可调整⼤⼩,默认no
  width=number窗⼝宽度(像素单位)
  height=number 窗⼝⾼度(像素单位)
  top=number窗⼝离屏幕顶部距离(像素单位)
  left=number窗⼝离屏幕左边距离(像素单位)
例:打开成全屏
function openbigwin(url){  //window.screen.height
var  width  =  screen.availWidth;
var  height  =  screen.availHeight;
window.open(url,"弹出窗
⼝","height="+height+",top=0,left=0,width="+width+",status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes"); }