为什么不行
怎么会不行呢
2017-04-21
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title> 事件</title> <script type="text/javascript"> function count(){ var a=document.getElementById("txt1").value;//获取第一个输入框的值 var b=document.getElementById("txt2").value;//获取第二个输入框的值 var c=document.getElementById("select").value;//获取选择框的值 var echo=""; if(c=="+") { echo=parseInt(a)+parseInt(b); } else if(c=="-") { echo=parseInt(a)-parseInt(b); } else if(c=="*") { echo=parseInt(a)*parseInt(b); } else if(c=="/") { echo=parseInt(a)/parseInt(b); } document.getElementById("fruit").value=echo; } </script> </head> <body> <input type='text' id='txt1' /> <select id='select'> <option value='+'>+</option> <option value="-">-</option> <option value="*">*</option> <option value="/">/</option> </select> <input type='text' id='txt2' /> <input type='button' value=' = ' onclick="count()" /> <!--通过 = 按钮来调用创建的函数,得到结果--> <input type='text' id='fruit' /> <h2> 你有很多语法错误 </h2> <b>1.</b>你获取id的名字(tex1)和按钮id名(txt1)不一致<br/><hr/> <b>2.</b>多个if判断语句第二个以后要使用else if<br/><hr/> <b>3.</b>获取的是准确的且是按钮里的内容不是整个html页面的内容:var c=document.getElementById("select").value;<br/><hr/> <b>4.</b>把变量命名为空:var echo=""; 为下面if判断做准备<br/><hr/> <b>5.</b> document.getElementById("fruit").value=echo; 获取输出框(id="fruit")并把内容放置在里面 <b>6.</b>parseInt()用法:函数可解析一个字符串,并返回一个整数,详情搜某度吧。 <br/><hr/> <b>7.</b>if(c=="/")里别把=和==搞混。要记住JS里的=指赋值,==才是等于。<br/><hr/> <b>8.</b>瞎说的<hr/> </body> </html>
你好,你的代码多个地方有问题,下面是修改过的代码,你对比一下
function count(){
var a=document.getElementById("txt1").value;//获取第一个输入框的值
var b=document.getElementById("txt2").value;//获取第二个输入框的值
var sel=document.getElementById("select");//获取选择框的值
var index = sel.selectedIndex;
var c=sel.options[index].value;
if(c=="+")
{
document.getElementById("fruit").value=parseInt(a)+parseInt(b);
}
if(c=="-")
{
document.getElementById("fruit").value=parseInt(a)-parseInt(b);
}
if(c=="*")
{
document.getElementById("fruit").value=parseInt(a)*parseInt(b);
}
if(c=="/")
{
document.getElementById("fruit").value=parseInt(a)/parseInt(b);
}
document.write(document.getElementById("fruit").value);
}
举报