window对象方法(alert-confirm-prompt)
Posted vinson-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window对象方法(alert-confirm-prompt)相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>window对象方法(alert-confirm-prompt)</title> <!-- alert("a");//弹出一个提示框,提示内容为:a confirm("a");//弹出一个带有提示信息a和确认/取消的对话框 prompt("a");//弹出一个带有提示信息a、输入框和确认/取消的对话框 扩展知识:换行符: --> </head> <body> <input id="inp" type="button" value="删除" /> <script> var a=document.getElementById("inp"); a.onclick=function (){ if (confirm ("您确定要删除吗")){ alert("已删除") }else{ alert("已取消") } } </script> </body> </html>
以上是关于window对象方法(alert-confirm-prompt)的主要内容,如果未能解决你的问题,请参考以下文章