BOM의 세 가지 프롬프트 창
6005 단어 js 사건 수용소
<html>
<head>
<meta charset="UTF-8">
<title>title>
head>
<script>
var a;
window.onload=function(){
document.getElementById("a").onclick=function(){
a=confirm(" 。");
if(a){
alert(" 。");
}else
alert(" ......")
}
}
script>
<body>
<button id="a"> button>
body>
html>
2. 알림 창 선택 확인은true를 되돌려주고, 취소 선택은false를 되돌려줍니다.
<html>
<head>
<meta charset="utf-8">
<title> (runoob.com)title>
head>
<body>
<p> 。p>
<button onclick="myFunction()"> button>
<p id="demo">p>
<script>
function myFunction(){
var x;
var person=prompt(" ","Harry Potter");
if (person!=null && person!=""){
x=" " + person + "! ?";
document.getElementById("demo").innerHTML=x;
}
}
script>
body>
html>
3. 경고 알림 창 alert (문자열 하나, 변수 이름.)alert();function 방법에 사용할 수 있으며, 일반적으로 라벨에서 직접 호출됩니다. 예를 들어;라벨에
<html>
<head>
<meta charset="utf-8">
<script>
function myFunction(){
alert(" , !");
}
script>
head>
<body>
<input type="button" onclick="myFunction()" value=" " />
body>
html>