源代碼
點擊運行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>教程</title> <script> function removeScroll(){ document.getElementById("myframe").scrolling="no"; } </script> </head> <body> <iframe id="myframe" src="/?demo" scrolling="auto"> <p>你的瀏覽器不支持iframes。</p> </iframe> <p>scrolling屬性的值為: <script> document.write(document.getElementById("myframe").scrolling); </script> <p> <input type="button" onclick="removeScroll()" value="移除滾動條"> <p>IE,Google Chrome,Opera,和Safari 在設置滾動條時會出現問題。</p> </body> </html>
運行結果