js杂项

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .menus{
            width: 200px;
            border: 1px solid red;
        }
        .menus .header{
            background-color: gold;
            padding: 20px 10px;
        }
    </style>
</head>
<body>

<div class="menus">
      <div class="header" onclick="myfunc()">大标题</div>
      <div class="item">内容</div>
</div>
<script type="text/javascript">
    function myfunc(){
        // 出现弹窗
        // alert("你好")
        confirm("是否要继续?")
    }
</script>
</body>
</html>
Title
posted @ 2023-01-07 10:39  风归去  阅读(3)  评论(0编辑  收藏  举报