w3pop.com :: ÍøÂçѧԺ :: HTML DOM :: HTML DOM scrollingÊôÐÔ
The scrolling property sets or returns whether or not a frame should have scrollbars.
scrollingÊôÐÔ¿ÉÉèÖûòÊÇ·µ»Ø¿ò¼ÜÊÇ·ñ´øÓйö¶¯Ìõ
frameObject.scrolling=yes|no |
In our example we will first create an HTML document containing a frameset with two columns. Each column is set to 50% of the browser window:
ÔÚÎÒÃǵľÙÀýÖÐÎÒÃǽ«½¨Á¢Ò»¸ö°üº¬Á½ÁеĿò¼Ü¼¯µÄHTMLÎĵµ£¬Ã¿¸öÁеĿí¶ÈÉèÖÃΪä¯ÀÀÆ÷´°¿Ú×Ü¿í¶ÈµÄ50%:
<html>
<frameset cols="50%,50%">
<frame id="leftFrame" src="frame_scroll.htm">
<frame id="rightFrame" src="frame_a.htm">
</frameset>
</html>
|
The HTML document "frame_scroll.htm" is put into the first column, and the HTML document "frame_a.htm" is put into the second column.
"frame_scroll.htm"·ÅÖÃÔÚµÚÒ»¸öÁУ¬¶ø"frame_a.htm"·ÅÔÚµÚ¶þ¸öÁÐÖС£
The source of "frame_scroll.htm" is as follows:
"frame_scroll.htm"´úÂëÈçÏ£º
<html>
<head>
<script type="text/javascript">
function enableScrolling()
{
parent.document.getElementById("leftFrame").scrolling="yes"
parent.document.getElementById("rightFrame").scrolling="yes"
}
function disableScrolling()
{
parent.document.getElementById("leftFrame").scrolling="no"
parent.document.getElementById("rightFrame").scrolling="no"
}
</script>
</head>
<body> <input type="button" onclick="enableScrolling()" value="Scroll bars" /> <input type="button" onclick="disableScrolling()" value="No scroll bars" /> </body> </html> |
Frames with and without scrollbars
¿ò¼Ü·Ö±ð´øÉϺͲ»´øÉϹö¶¯ÌõµÄЧ¹û
ÆÀÂÛ (0)
All