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.
40 lines
984 B
40 lines
984 B
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>进制转换器</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>进制转换器</h1>
|
|
|
|
<label for="inputNumber">输入数字:</label>
|
|
<input type="text" id="inputNumber" />
|
|
|
|
<label for="sourceBase">源进制:</label>
|
|
<select id="sourceBase">
|
|
<option value="2">二进制</option>
|
|
<option value="8">八进制</option>
|
|
<option value="10" selected>十进制</option>
|
|
<option value="16">十六进制</option>
|
|
</select>
|
|
|
|
<label for="targetBase">目标进制:</label>
|
|
<select id="targetBase">
|
|
<option value="2">二进制</option>
|
|
<option value="8">八进制</option>
|
|
<option value="10" selected>十进制</option>
|
|
<option value="16">十六进制</option>
|
|
</select>
|
|
|
|
<button onclick="convert()">转换</button>
|
|
|
|
<label for="outputNumber">输出结果:</label>
|
|
<input type="text" id="outputNumber" readonly />
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|