caishuzi.html 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>文曲星经典猜数字</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. text-align: center;
  11. margin-top: 50px;
  12. background-color: #f0f0f0;
  13. }
  14. #game-area {
  15. margin: 20px auto;
  16. padding: 20px;
  17. border: 2px solid #ccc;
  18. width: 300px;
  19. border-radius: 10px;
  20. background-color: #fff;
  21. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  22. }
  23. input[type="text"] {
  24. padding: 10px;
  25. font-size: 16px;
  26. width: 100px;
  27. height: 30px;
  28. border: 1px solid #ccc;
  29. border-radius: 5px;
  30. }
  31. button {
  32. padding: 10px 20px;
  33. font-size: 16px;
  34. cursor: pointer;
  35. background-color: #4CAF50;
  36. color: white;
  37. border: none;
  38. border-radius: 5px;
  39. margin-top: 10px;
  40. }
  41. button:hover {
  42. background-color: #45a049;
  43. }
  44. #message {
  45. font-size: 18px;
  46. margin-top: 20px;
  47. color: #333;
  48. }
  49. #history {
  50. margin-top: 20px;
  51. text-align: left;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <div id="game-area">
  57. <h1>文曲星经典猜数字</h1>
  58. <p>我已经想好了一个4位数(每位数字不同),猜猜看是多少?</p>
  59. <p>A.数字位置都正确</p>
  60. <p>B.数字正确,位置错误</p>
  61. <input type="number" id="guess-input" maxlength="4" placeholder="输入4位数">
  62. <button id="guess-button">猜一下</button>
  63. <div id="message"></div>
  64. <div id="history"></div>
  65. </div>
  66. <script>
  67. // 生成一个4位数(每位数字不同)
  68. function generateTargetNumber() {
  69. let digits = [];
  70. while (digits.length < 4) {
  71. const digit = Math.floor(Math.random() * 10);
  72. if (!digits.includes(digit)) {
  73. digits.push(digit);
  74. }
  75. }
  76. return digits.join('');
  77. }
  78. const targetNumber = generateTargetNumber();
  79. let attempts = 0;
  80. const history = [];
  81. // 获取元素
  82. const guessInput = document.getElementById('guess-input');
  83. const guessButton = document.getElementById('guess-button');
  84. const message = document.getElementById('message');
  85. const historyDiv = document.getElementById('history');
  86. // 猜数字逻辑
  87. guessButton.addEventListener('click', () => {
  88. const userGuess = guessInput.value;
  89. // 检查输入是否合法
  90. if (!/^\d{4}$/.test(userGuess) || new Set(userGuess).size !== 4) {
  91. message.textContent = "请输入一个4位数,且每位数字不同!";
  92. return;
  93. }
  94. attempts++;
  95. let correctPosition = 0;
  96. let correctDigit = 0;
  97. // 检查数字和位置
  98. for (let i = 0; i < 4; i++) {
  99. if (userGuess[i] === targetNumber[i]) {
  100. correctPosition++;
  101. } else if (targetNumber.includes(userGuess[i])) {
  102. correctDigit++;
  103. }
  104. }
  105. // 记录历史
  106. history.push({
  107. guess: userGuess,
  108. correctPosition,
  109. correctDigit
  110. });
  111. // 显示结果
  112. if (correctPosition === 4) {
  113. message.textContent = `恭喜你!你猜对了!数字是 ${targetNumber},你用了 ${attempts} 次尝试。`;
  114. guessInput.disabled = true;
  115. guessButton.disabled = true;
  116. } else {
  117. message.textContent = `A:${correctPosition},B:${correctDigit}`;
  118. }
  119. // 更新历史记录
  120. historyDiv.innerHTML = "<strong>历史记录:</strong><br>" + history.map(entry =>
  121. `猜测:${entry.guess} → A:${entry.correctPosition},B:${entry.correctDigit}`
  122. ).join('<br>');
  123. guessInput.value = ''; // 清空输入框
  124. guessInput.focus(); // 聚焦输入框
  125. });
  126. </script>
  127. </body>
  128. </html>