用JAVA编写一个小程序,在程序的容器中有两个按钮和一个文本框

在程序的容器中有两个按钮和一个文本框,单击“确定”按钮时,文本框显示按钮的名字,单击“清除”按钮时,清除文本框中的内容。希望编程尽量能够简洁点,谢谢... 在程序的容器中有两个按钮和一个文本框,单击“确定”按钮时,文本框显示按钮的名字,单击“清除”按钮时,清除文本框中的内容。
希望编程尽量能够简洁点,谢谢
展开
 我来答
雪飞潇潇
2013-12-11 · TA获得超过6273个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:838万
展开全部

附件下载代码

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
haodemumu168
2013-12-11 · TA获得超过299个赞
知道小有建树答主
回答量:479
采纳率:100%
帮助的人:280万
展开全部
 <div>
   <input type="button" value="按钮1" id="button1"/>
   <input type="button" value="按钮2" id="button2"/>
   <textarea rows="" cols="" id="textcontent">我是文本框</textarea>
   <input type="button" value="确定" onclick="sure()"/>
   <input type="button" value="清除" onclick="del()"/>
  </div>
  
<script type="text/javascript">
function sure(){
var b1 = $('#button1').val();
var b2 = $('#button2').val();
$('#textcontent').html(b1+b2);
}
function del(){
$('#textcontent').html("");
}
</script>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
马珊笛704
2013-12-11 · TA获得超过481个赞
知道小有建树答主
回答量:634
采纳率:100%
帮助的人:266万
展开全部
<html>
<head>
<center>
<font size="4" color="red">计算器</font>
</center>
</head>
<body>
<center>
<table>
<tr>
<td>
金额:
</td>
<td>
<input type="text" name="money" id="money"/>
</td>
</tr>
<tr>
<td>
天数:
</td>
<td>
<input type="text" name="day" id="day"/>
</td>
</tr>
<tr>
<td>
利率:
</td>
<td>
<input type="text" name="lilv" id="lilv"/>
</td>
</tr>

<tr>
<td colspan="2" align="center">
<input type="button" value="本息和" onclick="benxi()"/>
<input type="button" value="清空" onclick="qingkong()"/>
</td>
</tr>
<tr>
<td>
本息和:
</td>
<td>
<input type="text" name="benXiSum" id="benXiSum" readonly="readonly"/>
</td>
</tr>
</table>
</center>

</body>
<script>
function benxi(){
var money=document.getElementById("money").value;
var day=document.getElementById("day").value;
var lilv=document.getElementById("lilv").value;
//利息
var lx=(parseFloat(money)*parseInt(day))*parseFloat(lilv)/360;
//本金和
var bx=parseFloat(money)+parseFloat(lx);
document.getElementById("benXiSum").value=bx;

}
//清空
function qingkong(){
document.getElementById("money").value="";
document.getElementById("day").value="";
document.getElementById("lilv").value="";
document.getElementById("benXiSum").value="";
}
</script>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式