HTML DOM scrolling ÊôÐÔ

¶¨ÒåºÍÓ÷¨

scrolling ÊôÐÔ¿ÉÉèÖûò·µ»Ø iframe ÊÇ·ñÓµÓйö¶¯Ìõ£¨¹ö¶¯²ßÂÔ£©¡£

Óï·¨

iframeObject.scrolling=auto|yes|no

ʵÀý

ÏÂÃæµÄÀý×Ó¿ÉÌí¼ÓºÍɾ³ý iframe µÄ¹ö¶¯Ìõ£º

<html>
<head>
<script type="text/javascript">
function addScrollbars()
  {
  document.getElementById("frame1").scrolling="yes";
  }
  function removeScrollbars()
  {
  document.getElementById("frame1").scrolling="no";
  }
</script>
</head>

<body>
<iframe src="frame_a.htm" id="frame1" ></iframe><br />

<input type="button" onclick="addScrollbars()"
value="Add Scrollbars" />
<input type="button" onclick="removeScrollbars()"
value="Remove Scrollbars" />

</body>
</html>
VUE