首页 > 语言 > JavaScript > 正文

JS去除iframe滚动条的方法

2024-05-06 16:18:04
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JS去除iframe滚动条的方法,涉及javascript操作iframe中属性的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了JS去除iframe滚动条的方法。分享给大家供大家参考。具体如下:

下面的代码可以通过修改scrolling来去除iframe的滚动条

 

 
  1. <!DOCTYPE html> 
  2. <html> 
  3. <head> 
  4. <script> 
  5. function removeScroll() 
  6. document.getElementById("myframe").scrolling="no"
  7. </script> 
  8. </head> 
  9. <body> 
  10. <iframe id="myframe" src="/default.asp" scrolling="auto"
  11. <p>Your browser does not support iframes.</p> 
  12. </iframe> 
  13. <p>The value of the scrolling attribute is: 
  14. <script> 
  15. document.write(document.getElementById("myframe").scrolling); 
  16. </script> 
  17. <p> 
  18. <input type="button" onclick="removeScroll()" 
  19. value="Remove Scrollbars"
  20. <p>Internet Explorer, Google Chrome, Opera,  
  21. and Safari have problems with setting  
  22. the scrolling attribute.</p> 
  23. </body> 
  24. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选