91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript中bom是什么

發布時間:2021-06-26 10:05:58 來源:億速云 閱讀:144 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關JavaScript中bom是什么,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

BOM(Broswer Object Model)

凡是 window 的屬性和方法,均可以省略“window.”

方法:

框窗

1.警告框

window.alert("msg");

2.確認框

window.confirm("msg");

3.詢問框

window.prompt("msg","defaulvalue")

頁面

1.打開一個窗口

window.open()

2.在子窗口中使用,表示父窗口的window對象

window.opener

window.opener.fatherSayHello(); 調用父窗口的方法
window.opener.a

3.關閉當前窗口

window.close()

window.close(); 關閉當前
window.opener.close(); 關閉父窗口

定時任務

1.定時任務

var taskid = window.setTimeout(function,ms);
window.setTimeout("alert('hello!')", 5000);

2.間隔執行任務

var taskid = window.setInteval(function,ms);

3.清除定時任務

window.clearTimeout(taskid);

4.清除間隔執行任務

window.clearInteval(taskid);

打印屏幕

//長*寬
console.log(screen.width + "*" + screen.height)

后退

window.history.back();

前進

window.history.forward();

刷新

window.location.reload();//刷新
window.location.href = window.location.href;//刷新

Go 前進(x)步,后退(x)步,刷新(0),

window.history.go(x)

鏈接

window.location.href = http://www.baidu.com;

用戶代理 瀏覽器內核

console.log(window.navigator.userAgent)

框窗

//凡是window的屬性和方法,均可以省略“window.”
<script type="application/javascript">
// 警告框
function testAlert(){
var result=window.alert("這是一個警告框")
console.log(result);
}
// confirm 確認框
function testConfirm(){
var result =window.confirm("你確認要離開了嗎?");
if(result){
alert("歡迎下次再來!")
}else{
alert("那你在逛逛吧!")
}
consol.log(result);
}
// prompt 詢問框
function testPrompt(){
var result = window.prompt("請輸入U盾密碼","例如:123456");
console.log(result);
}
</script>
<body>
<button onclick="testAlert();">testAlert</button>
<button onclick="testConfirm();">testConfirm</button>
<button onclick="testPrompt();">testPrompt</button>
</body>

頁面

//子頁面
<script type="application/javascript">
function sayHello(){
alert("hello world")
}
//打開一個窗口
function callFatherMethod(){
window.opener.fatherSayHello();
window.opener.a
}
//關閉本窗口
function testClose(){
window.close();
}
//關閉父窗口
function testFatherClose(){
window.opener.close();
}
</script>
<body>
<button onclick="callFatherMethod()">調用父窗口的方法</button>
<button onclick="testClose()">關閉本窗口</button>
<button onclick="testFatherClose()">關閉父窗口</button>
</body>
//父頁面
<script type="application/javascript">
var a = 10;
window.onload = function(){
console.log(window);
console.log("11111111111")
}
//打開一個新窗口
function testOpen(){
var sonwindow = window.open("son.html","aaa","height=300,width=500,top=50,left=50,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no")
//子窗口的window對象
console.log(sonwindow);
}
function fatherSayHello(){
alert("hello son!");
}
</script>
<body>
<button onclick="testOpen();">打開一個新窗口</button>
</body>

定時任務

<script type="application/javascript">
function setTime() {
// window.setTimeout("alert('hello!')",5000);
window.setTimeout(sayHello, 5000);
}
var sayHello = function () {
alert("你好!");
}
</script>
</head>
<body>
<button onclick="sayHello();">調用sayHello</button>
<button onclick="setTime();">調用setTime</button>

間隔執行任務

<script type="application/javascript">
/*
window.onload = function(){
window.setTimeout(closeSelf, 1000);
}
function closeSelf() {
var secval = document.getElementById("sec").innerHTML;
var secint = parseInt(secval);
document.getElementById("sec").innerHTML = --secint;
if(secint == 0){
window.close();
}
window.setTimeout(closeSelf, 1000);
}
*/

var taskid = 0;
window.onload = function(){
//間隔執行任務,間隔 1000ms 執行一次
taskid = window.setInterval(closeSelf, 1000);
}
function closeSelf() {
//獲取 10s 
var secval = document.getElementById("sec").innerHTML;
console.log(secval);
var secint = parseInt(secval);
console.log(secint);
//10s 減減
document.getElementById("sec").innerHTML = --secint;
if(secint == 0){
window.close();
}
}
// 4.清除間隔執行任務 暫停
function stopTask(){
window.clearInterval(taskid);
}
//繼續計時
function goonTask(){
taskid = window.setInterval(closeSelf, 1000);
console.log(taskid)
}
</script>
<body>
付款成功,頁面將在<span id="sec">10</span>s后關閉。
<button onclick="stopTask()">稍等,待會我會自己關閉</button>
<button onclick="goonTask()">繼續讀秒,關閉窗口</button>
</body>

關于“JavaScript中bom是什么”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东安县| 阳泉市| 仪陇县| 东乌珠穆沁旗| 德保县| 河北省| 滕州市| 都安| 化德县| 金湖县| 宁国市| 尚义县| 五寨县| 盘锦市| 琼海市| 云霄县| 淳化县| 中江县| 奈曼旗| 谢通门县| 得荣县| 乐昌市| 汨罗市| 定襄县| 大悟县| 五台县| 大竹县| 康保县| 盐城市| 梁山县| 麻阳| 宁乡县| 孟州市| 龙山县| 琼海市| 防城港市| 东乡族自治县| 长丰县| 平湖市| 突泉县| 深泽县|