我希望能够使用Math.js
输入框将用户给定的数量转换为网站上的另一个数量,但无论我尝试什么,都无法从标有“转换”的输入框中获取用户输入并进行更改。我怎么能做到这一点?
<!DOCTYPE html>
<html>
<head>
<title>Convert</title>
<script type="text/javascript" src="https://raw.github.com/josdejong/mathjs/master/dist/math.js"></script>
</head>
<body>
<input type="text" id="convert"></input>
<script>
function print(value) {
document.write(math.format(value) + '<br>');
}
print(math.eval('"TEXT IN CONVERT BOX HERE" inch in cm'));
</script>
</body>
</html>