我試圖做一些滾動iframe,但我的Javascript似乎並沒有工作。需要一些幫助,這個iframe滾動問題
這裏是我的代碼...
<html>
<head>
<script type="text/javascript">
function loadorder() {
theFrame = document.getElementsByName("iframename");
if (theFrame <> null) {
theFrame.src="";
theFrame.contentWindow.scrollTo(528,65)
}
else {
alert("could not get iframe element!");
}
}
</script>
</head>
<body>
<iframe name="iframename" src="http://www.domain.com/otherpage.html" frameborder="0"></iframe>
</body>
</html>
我從另一個網站的代碼,並修改了一些適合我的需要。
基本上我正在試圖做的是在此頁面的iframe中顯示來自另一個HTML頁面的橫幅。
這一切都在同一個域的,所以我真的不知道爲什麼這是不工作...
一個問題:'theFrame <> null'是無效的JS語法(檢查控制檯是否有錯誤)。你想'!=='。 –