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.

29 lines
829 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!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>