37、你爱我吗案例

yu
yu
2024-10-04 / 0 评论 / 3 阅读 / 正在检测是否收录...
<!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>Document</title>
</head>
<body>
    <script>
        while (true){
            let str = prompt('你爱我吗')
            // 退出条件 爱
            if (str === '爱'){
                break
            }
        }
    </script>
</body>
</html>
0

评论 (0)

取消