错在哪里,ReferenceError: count is not defined,一直找不到

来源:6-11 编程练习

Mileswongke

2016-10-16 16:39

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>函数的编程练习</title>

</head>

<script type="text/javascript">

window.onload=function () {

var oText1=document.getElementById('text1').value;

var oText2=document.getElementById('text2').value;

var oLie=document.getElementById('lie').value;

var oFriut=document.getElementById('friut').value;

var result="";

function count() {

switch (oLie) {

case "+":

result=oText1+oText2;

break;

case "-":

result=oText1-oText2;

break;

case "*":

result=oText1*oText2;

break;

default:

result=oText1/oText2;

break;

}

oFriut=result;

}

};

</script>

<body>

<input type="text" name="text1" id="text1">

<input type="text" name="text2" id="text2">

<select id="lie">

<option id="+">+</option>

<option id="-">-</option>

<option id="*">*</option>

<option id="/">/</option>

</select>

<input type="button" name="btn" id="btn" onclick="count()">

<input type="text" name="friut" id="friut">

</body>

</html>



写回答 关注

1回答

  • 慕少4929721
    2016-10-16 17:43:30

    加载函数错了,不需要window.onload,只要那个点击事件的函数count()就行了


    Milesw...

    试了一下,还是不行,我用别的方法做好了,请问大神们平时都是用什么检测代码的

    2016-10-18 19:06:02

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题