框架无滚动条的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

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。