3个回答
展开全部
我直接贴出来了,要html也可以留下邮箱我发给你
<script>
function dianji(){
var alg = document.getElementsByName("alg");
var text1 = parseInt(document.getElementById("text1").value);
var text2 = parseInt(document.getElementById("text2").value);
var text3 = 0;
for(var i=0;i<alg.length;i++)
{
if(alg[i].checked)
{
if(alg[i].value == 1) {
text3 = text1 + text2;
}
if(alg[i].value == 2) {
text3 = text1-text2;
}
if(alg[i].value == 3) {
text3 = text1*text2;
}
if(alg[i].value == 4) {
text3 = text1/text2;
}
}
}
document.getElementById("text3").value = text3;
}
</script>
<BODY>
请输入第一个数字<input type="text" id="text1" /><br />
请输入第二个数字<input type="text" id="text2" /><br />
<input type="radio" name="alg" value="1" checked= "checked" />+
<input type="radio" name="alg" value="2" />-
<input type="radio" name="alg" value="3" />*
<input type="radio" name="alg" value="4" />/ <br />
<input type="button" value="==" onclick="dianji()" /><br/>
<input type="text" id="text3" />
</BODY>
<script>
function dianji(){
var alg = document.getElementsByName("alg");
var text1 = parseInt(document.getElementById("text1").value);
var text2 = parseInt(document.getElementById("text2").value);
var text3 = 0;
for(var i=0;i<alg.length;i++)
{
if(alg[i].checked)
{
if(alg[i].value == 1) {
text3 = text1 + text2;
}
if(alg[i].value == 2) {
text3 = text1-text2;
}
if(alg[i].value == 3) {
text3 = text1*text2;
}
if(alg[i].value == 4) {
text3 = text1/text2;
}
}
}
document.getElementById("text3").value = text3;
}
</script>
<BODY>
请输入第一个数字<input type="text" id="text1" /><br />
请输入第二个数字<input type="text" id="text2" /><br />
<input type="radio" name="alg" value="1" checked= "checked" />+
<input type="radio" name="alg" value="2" />-
<input type="radio" name="alg" value="3" />*
<input type="radio" name="alg" value="4" />/ <br />
<input type="button" value="==" onclick="dianji()" /><br/>
<input type="text" id="text3" />
</BODY>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
javaBean的要不要
你要java代码怎么那位给发的是jscript
你要java代码怎么那位给发的是jscript
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询