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.
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Base Converter</title>
|
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<h1>进制转换器</h1>
|
|
|
|
|
<form id="converterForm">
|
|
|
|
|
<label for="inputValue">输入数值:</label>
|
|
|
|
|
<input type="text" id="inputValue" name="inputValue" required>
|
|
|
|
|
|
|
|
|
|
<label for="fromBase">原始进制(2-16):</label>
|
|
|
|
|
<input type="number" id="fromBase" name="fromBase" min="2" max="16" required>
|
|
|
|
|
|
|
|
|
|
<label for="toBase">目标进制(2-16):</label>
|
|
|
|
|
<input type="number" id="toBase" name="toBase" min="2" max="16" required>
|
|
|
|
|
|
|
|
|
|
<button type="submit">转换</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div id="result"></div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="script.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|