欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JS常用的消息框有哪些

程序员文章站 2022-03-28 21:04:27
...
这次给大家带来JS常用的消息框有哪些,JS常用消息框的注意事项有哪些,下面就是实战案例,一起来看一下。

首先来看下运行效果

JS常用的消息框有哪些

JS常用的消息框有哪些

JS常用的消息框有哪些

加下来分享一下全部代码:

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <title>Document</title> 
  <script type="text/javascript"> 
    function warn_info(){ 
      alert("提示消息框"); 
    } 
    function sure_info(){ 
      if (confirm("确认删除吗?")){ 
        alert("删除成功"); 
      } 
      else{ 
        alert("取消删除"); 
      } 
    } 
    function input_info(){ 
      var txt=prompt("请输入您的年龄"); 
      if(txt==""){ 
        alert("输入为空,重新输入"); 
      } 
      else{ 
        alert("您的年龄为"+txt) 
      } 
    } 
  </script> 
</head> 
<body> 
  <input type="button" value="提示消息" onclick="warn_info()"> 
  <input type="button" value="确认消息" onclick="sure_info()"> 
  <input type="button" value="输入消息" onclick="input_info()"> 
</body> 
</html>

相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!

推荐阅读:

js动态创建标签以及设置属性的方法

用JS做计算题

以上就是JS常用的消息框有哪些的详细内容,更多请关注其它相关文章!