用JAVA写一个按钮程序,单击按钮按钮上就自动把两个自己输入的数字相加并显示结果
1个回答
展开全部
<html>
<head>
<title> New Document </title>
<script>
function btn(){
var first = document.getElementById("first").value;
document.getElementById("result").value = eval(first);;
}
</script>
</head>
<body>
输入运算公式:<input type="text" id="first" />
结果:<input type="text" id="result" />
<input type="button" value="计算" onclick="btn()" />
</body>
</html>
<head>
<title> New Document </title>
<script>
function btn(){
var first = document.getElementById("first").value;
document.getElementById("result").value = eval(first);;
}
</script>
</head>
<body>
输入运算公式:<input type="text" id="first" />
结果:<input type="text" id="result" />
<input type="button" value="计算" onclick="btn()" />
</body>
</html>
更多追问追答
追问
要用eclipse运行
追答
Scanner用过吗?
取到两个数相加。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询