首頁  >  文章  >  web前端  >  JS去除iframe滾動條的方法_javascript技巧

JS去除iframe滾動條的方法_javascript技巧

WBOY
WBOY原創
2016-05-16 16:06:321254瀏覽

本文實例講述了JS去除iframe滾動條的方法。分享給大家供大家參考。具體如下:

下面的程式碼可以透過修改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" onclick="removeScroll()" 
value="Remove Scrollbars">
<p>Internet Explorer, Google Chrome, Opera, 
and Safari have problems with setting 
the scrolling attribute.</p>
</body>
</html>

希望本文所述對大家的javascript程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn