alert可以彈出圖片麼_彈出框
阿新 • • 發佈:2021-02-01
技術標籤:alert可以彈出圖片麼
一.alert 警 告 框
alert(message)
的作用是彈出一個提示框或者警告框,純提示作用。
| 引數 | 描述 | | :---: | :---: | | message | 在window上彈出的對話方塊中顯示的純文字 |
alert("Hello World!");
因為alert是window物件的函式,也可以通過window.alert()來呼叫。
window.alert("Hello World!");
二. prompt 詢 問 框
prompt(text,defaultText)
| 引數 | 描述 | | :---: | :---: | | text | 可選。要在對話方塊中顯示的純文字。 | | defaultText | 可選。預設的輸入文字。 |
var age = prompt("請輸入年齡", "只能輸入數字喲");
console.log(age);
三.confirm 確 認 框
confirm(message)
的作用是提示使用者是否真的要執行該操作。
| 引數 | 描述 | | :---: | :---: | | message | 要在 window 上彈出的對話方塊中顯示的純文字。 |
var flag = confirm("你真的要退出嗎?");
if(flag) {
alert("退出成功"); // 刪除一些使用者資訊
}else {
alert("退出失敗");
}