Compare commits
No commits in common. 'master' and 'main' have entirely different histories.
@ -0,0 +1,15 @@
|
|||||||
|
document.getElementById('converterForm').addEventListener('submit', function(event) {
|
||||||
|
event.preventDefault(); // 阻止表单默认提交行为
|
||||||
|
|
||||||
|
const inputValue = document.getElementById('inputValue').value.toUpperCase();
|
||||||
|
const fromBase = parseInt(document.getElementById('fromBase').value, 10);
|
||||||
|
const toBase = parseInt(document.getElementById('toBase').value, 10);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const decimalValue = parseInt(inputValue, fromBase);
|
||||||
|
const result = decimalValue.toString(toBase).toUpperCase();
|
||||||
|
document.getElementById('result').textContent = `转换后的数值:${result} (${toBase}进制)`;
|
||||||
|
} catch (e) {
|
||||||
|
document.getElementById('result').textContent = '转换错误,请检查输入是否正确';
|
||||||
|
}
|
||||||
|
});
|
@ -1,25 +0,0 @@
|
|||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
width: 300px;
|
|
||||||
margin: 50px auto;
|
|
||||||
padding: 20px;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
form {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
label, input, button {
|
|
||||||
margin: 5px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#result {
|
|
||||||
margin-top: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
Loading…
Reference in new issue