HTML DOM Window frames 屬性返回一個與窗口對應的對象,代表其中存在的所有框架。
用法
以下是語法 -
返回當前窗口中的幀
window.frames
讓我們看一個例子HTML DOM Window frames屬性 -
示例
<!DOCTYPE html><html>
<head>
<title>HTML DOM Window frames</title>
<style>
* {
padding:2px;
margin:5px;
}
form {
width:70%;
margin:0 auto;
text-align:center;
}
input[type="button"] {
border-radius:10px;
</style
></head>
<body>
<form>
<fieldset>
<legend>HTML-DOM-Window-frames</legend>
<label>User 1:</label><iframe src="https://www.example.com"></iframe><br>
<label>User 2:</label><iframe src="https://www.example.com"></iframe><br>
<input type="button" value="Launch Virus" onclick="goToURL()">
<div id="divDisplay">
</div>
</fieldset>
</form>
<script>
var divDisplay = document.getElementById("divDisplay");
function goToURL() {
for (var i = window.frames.length - 1; i >= 0; i--)
window.frames[i].location = "http://www.tutorialspoint.com/html5/foo.mp4";
divDisplay.textContent = 'Virus Deployed';
}
</script>
</body>
</html>
輸出
點擊前‘Launch Virus’按鈕 -
點擊後‘Launch Virus’按鈕 -
相關用法
- HTML DOM Window frameElement屬性用法及代碼示例
- HTML DOM Window speechSynthesis屬性用法及代碼示例
- HTML DOM Window scrollMaxY屬性用法及代碼示例
- HTML DOM Window navigator屬性用法及代碼示例
- HTML DOM Window opener屬性用法及代碼示例
- HTML DOM Window origin屬性用法及代碼示例
- HTML DOM Window Scroll()用法及代碼示例
- HTML DOM Window scrollY屬性用法及代碼示例
- HTML DOM Window visualViewport屬性用法及代碼示例
- HTML DOM Window scrollX屬性用法及代碼示例
- HTML DOM Window performance屬性用法及代碼示例
- HTML DOM Window stop()用法及代碼示例
- HTML DOM Window parent屬性用法及代碼示例
- HTML DOM Window closed屬性用法及代碼示例
- HTML DOM Window scrollMaxX屬性用法及代碼示例
- HTML DOM WheelEvent deltaY屬性用法及代碼示例
- HTML DOM WheelEvent deltaX屬性用法及代碼示例
- HTML DOM Style overflowY屬性用法及代碼示例
- HTML DOM Document hidden屬性用法及代碼示例
- HTML DOM IFrame用法及代碼示例
注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Window frames Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。