首页
HTML / CSS
XML技术
Java技术
脚本语言
前端技术
框架
数据库
高级语言
软件测试
开发工具
大数据
其他技术
JavaScript 参考手册
概览
JavaScript
对象
JavaScript Array 对象
JavaScript Boolean 对象
JavaScript Date 对象
JavaScript Math 对象
JavaScript Number 对象
JavaScript String 对象
JavaScript RegExp 对象
JavaScript 全局属性/函数
JavaScript 运算符
JavaScript Error
Browser
对象
Window 对象
Navigator 对象
Screen 对象
History 对象
Location 对象
存储对象
DOM
对象
HTML DOM Document 对象
HTML DOM 元素对象
HTML DOM 属性对象
HTML DOM 事件对象
HTML DOM Console 对象
CSSStyleDeclaration 对象
DOM HTMLCollection
HTML
对象
<a>
<area>
<audio>
<base>
<blockquote>
<body>
<button>
<canvas>
<col>
<colgroup>
<datalist>
<del>
<details>
<dialog>
<embed>
<fieldset>
<form>
<iframe>
<frameset >
<img>
<ins>
<input> - button
<input> - checkbox
<input> - color
<input> - date
<input> - datetime
<input> - datetime-local
<input> - email
<input> - file
<input> - hidden
<input> - image
<input> - month
<input> - number
<input> - range
<input> - password
<input> - radio
<input> - reset
<input> - search
<input> - submit
<input> - text
<input> - time
<input> - url
<input> - week
<keygen>
<link>
<label>
<legend>
<li>
<map>
<menu>
<menuItem>
<meta>
<meter>
<object>
<ol>
<optgroup>
<option>
<param>
<progress>
<q>
<script>
<select>
<source>
<style>
<table>
<td>
<th>
<tr>
<textarea>
<title>
<time>
<track>
<video>
Window
alert()
方法
Window 对象
定义和用法
alert() 方法用于显示带有一条指定消息和一个
确认
按钮的警告框。
语法
alert(
message
)
浏览器支持
所有主要浏览器都支持 alert() 方法
实例
实例
显示一个警告框:
<script>
function myFunction(){
alert("你好,我是一个警告框!");
}
</script>
更多实例
Window 对象
上一篇
Window blur() 方法
下一篇
Window top 属性