简单弹窗实现

Posted omehtin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单弹窗实现相关的知识,希望对你有一定的参考价值。

使用变量进行姓名、年龄、电话号码的储存,通过alert弹框显示数据。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>弹窗</title>
<body>
   <!--  <button onclick="tanchuang()">test</button> -->
    <script>
        var name = "张三";
        var age = "18";
        var phone = "8008208820";

        function tanchuang()
            alert(`我是$name,今年$age岁,电话是$phone,你可随时联系我。`);
        

        tanchuang();
    </script>
    
</body>
</html>

实验效果

以上是关于简单弹窗实现的主要内容,如果未能解决你的问题,请参考以下文章

javascript弹窗实例_简单博客

JSON 弹窗

一个简单功能的SQL 实现

简单弹窗实现

简单弹窗实现

简单弹窗实现