码迷,mamicode.com
首页 > 编程语言 > 详细

框架无滚动条的javascript脚本

时间:2015-04-01 20:15:50      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:javascript 滚动条

框架无滚动条的javascript脚本

主要是通过修改scrolling来去除iframe的滚动条

代码比较简单


<!DOCTYPE html> 

<html> 

<head>

 <script>

 function removeScroll()

 { document.getElementById("myframe").scrolling="no"; } 

</script> 

</head>

 <body> 

<iframe id="myframe" src="/default.asp" scrolling="auto"> <p>Your browser does not support iframes.</p> </iframe> <p>The value of the scrolling attribute is: <script> 

document.write(document.getElementById("myframe").scrolling); </script>

 <p>

 <input type="button" value="Remove Scrollbars"> <p>Internet Explorer, Google Chrome, Opera,  and Safari have problems with setting  the scrolling attribute.</p> 

</body>

 </html> 


本文出自 “xibalangei” 博客,请务必保留此出处http://9897987.blog.51cto.com/9887987/1627351

框架无滚动条的javascript脚本

标签:javascript 滚动条

原文地址:http://9897987.blog.51cto.com/9887987/1627351

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!