You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
<!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>
|
|
<script src="/static/js/jquery-3.6.0.min.js"></script>
|
|
<script src="/static/js/index.js"></script>
|
|
<link rel="stylesheet" href="/static/css/index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="hfc">
|
|
<h1 data-name="title">四则运算生成器</h1>
|
|
<select id="module" class="btnn2">
|
|
<option value="0" data-name="module" id="module_default">--请选择模式--</option>
|
|
<option value="20">20</option>
|
|
<option value="100">100</option>
|
|
</select>
|
|
<button id="create" class="btnn" data-name="create">生成题目</button>
|
|
<button id="cleanall" class="btnn" data-name="cleanall" style="display: none;">清空题目</button>
|
|
<select id="exchange" class="btnn2">
|
|
<option value="0">简体中文</option>
|
|
<option value="1">English</option>
|
|
</select>
|
|
<span id="time">0s</span>
|
|
<button id="check" class="btnn" data-name="check" style="display: none;">提交答案</button>
|
|
<button id="show" class="btnn" data-name="show" style="display: none;">查看答案</button>
|
|
|
|
<span id="info" style="display: none;"></span>
|
|
</div>
|
|
<div class="display">
|
|
<ul id="ul" style="display: none"></ul>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |