이 글의 예시에서는 JS 팝업 대화 상자의 구현 방법을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
1. 경고 상자
<html> <head> <script type="text/javascript"> function disp_alert() { alert("我是警告框!!") } </script> </head> <body> <input type="button" onclick="disp_alert()" value="显示警告框" /> </body> </html>
2. 취소 상자를 확인하세요
<html> <head> <script type="text/javascript"> function disp_confirm() { var r=confirm("按下按钮") if (r==true) { document.write("您按了确认!") } else { document.write("您按了取消!") } } </script> </head> <body> <input type="button" onclick="disp_confirm()" value="显示确认框" /> </body> </html>
3. 입력창이 있습니다
<html> <head> <script type="text/javascript"> function disp_prompt() { var name=prompt("请输入您的名字","Bill Gates") if (name!=null && name!="") { document.write("你好!" + name + " 今天过得怎么样?") } } </script> </head> <body> <input type="button" onclick="disp_prompt()" value="显示提示框" /> </body> </html>
이 기사가 JavaScript 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.