js 中 parent.scroll(x,y)中的参数什么意思,请教了

时间:2022-07-25 22:20:59
js 中 parent.scroll(x,y)中的x,y的具体含义是什么
function scrollre()
{
   for(var i=0,i<500,i++)
  { parent.scroll(1,i)}
}
只知道是实现滚屏,i从小到大就是数值方向上从上到下滚屏,;
可是,参数x更改为什么没反应,还有500这个数值可以更改到多大或者多小

2 个解决方案

#1


scroll Method  Internet Development Index 

--------------------------------------------------------------------------------

Causes the window to scroll to the specified x- and y-offset at the upper-left corner of the window. 

Syntax

window.scroll(iX, iY)
Parameters

iX Required. Integer that specifies the horizontal scroll offset, in pixels. 
iY Required. Integer that specifies the vertical scroll offset, in pixels.  

Return Value

No return value.

Remarks

This method is provided for backward compatibility only. The recommended way to scroll a window is to use the scrollTo method. 

Standards Information

There is no public standard that applies to this method. 

#2


引用楼主 xiaohuixiongya 的回复:
js 中 parent.scroll(x,y)中的x,y的具体含义是什么
function scrollre()
{
  for(var i=0,i<500,i++)
  { parent.scroll(1,i)}
}
只知道是实现滚屏,i从小到大就是数值方向上从上到下滚屏,;
可是,参数x更改为什么没反应,还有500这个数值可以更改到多大或者多小

x是横向滚动,y是纵向滚动

#1


scroll Method  Internet Development Index 

--------------------------------------------------------------------------------

Causes the window to scroll to the specified x- and y-offset at the upper-left corner of the window. 

Syntax

window.scroll(iX, iY)
Parameters

iX Required. Integer that specifies the horizontal scroll offset, in pixels. 
iY Required. Integer that specifies the vertical scroll offset, in pixels.  

Return Value

No return value.

Remarks

This method is provided for backward compatibility only. The recommended way to scroll a window is to use the scrollTo method. 

Standards Information

There is no public standard that applies to this method. 

#2


引用楼主 xiaohuixiongya 的回复:
js 中 parent.scroll(x,y)中的x,y的具体含义是什么
function scrollre()
{
  for(var i=0,i<500,i++)
  { parent.scroll(1,i)}
}
只知道是实现滚屏,i从小到大就是数值方向上从上到下滚屏,;
可是,参数x更改为什么没反应,还有500这个数值可以更改到多大或者多小

x是横向滚动,y是纵向滚动