首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >在Chrome中运行但不能在其他浏览器中运行的Javascript

在Chrome中运行但不能在其他浏览器中运行的Javascript
EN

Stack Overflow用户
提问于 2012-01-30 19:07:44
回答 3查看 174关注 0票数 0

我正在做这个加法问题工作表,我让它在Chrome中工作并运行,但下一个问题按钮在其他任何地方都不起作用。这是我的第一个Javascript程序。我通过一个验证器运行它,并将其减少到1个错误,但是注释掉这一行似乎没有什么帮助。

下面是整个Javascript部分:

代码语言:javascript
运行
AI代码解释
复制
 <script type="text/javascript">

var questionTop = new Array(); //Array to store the top random number of questions
var questionBot = new Array(); //Array to store the bottom random number of questions
var answers = new Array(); //Array to store the answers the user enters
var correct = new Array(); //Array to store the correct answers
var questionMarker = 0; //Loop counter for number of times through
var correctAnswers = 0; //Counter for number of correct answers

function startQuiz() {
    questionMarker = 0;  //Function starts the quiz and resets the form
    correctAnswers = 0;  //so that the first random numbers show up and hides the start button
    document.getElementById('startButton').style.visibility='hidden';
    document.getElementById('nextQuestion').style.visibility='visible';
    document.getElementById('firstAdd').innerHTML=randomNumber();
    document.getElementById('secondAdd').innerHTML=randomNumber();
}

function randomNumber()
{
    var number = Math.floor(Math.random()*50) + 1; //Generates a random number between 1-50
    return number;
}

function nextQuestion()
{
    if(txtAnswer.value === "") //Check to see if they answered the question
    {
        alert("You didn't answer the question."); //Tell them they didn't
    }
    else
    {
        questionTop[questionMarker] = document.getElementById('firstAdd').innerHTML * 1; //Stores the top random number in the array
        questionBot[questionMarker] = document.getElementById('secondAdd').innerHTML * 1; //Stores the bottom random number in the array
        answers[questionMarker] = txtAnswer.value; //Stores the answer given by the user
        correct[questionMarker] = questionTop[questionMarker] + questionBot[questionMarker]; //Calculates and stores the correct answer
        if(answers[questionMarker] == correct[questionMarker]) //Checks to see if they got the answer right
        {
            alert("You got the question right!"); //Tells them so
            correctAnswers++; //Counts the correct answer for later
        }
        else
        {
            alert("Sorry that was not the correct answer." + '\n' + "You answered " + answers[questionMarker] + '\n' + "The correct answer was " + correct[questionMarker]); //Tells them the answer if they got it wrong and compares to their answer
        }
        document.getElementById('firstAdd').innerHTML=randomNumber(); //Generates new top random number
        document.getElementById('secondAdd').innerHTML=randomNumber(); //Generates new bottom random number
        txtAnswer.value = ""; //Clears the answer field
        txtCarry.value = ""; //Clears the carry field
        questionMarker++; //Increments the questionMarker so we know how many questions we've answered.
    }
    if(questionMarker == 10) //If we've answered 10 questions...
    {
        alert("You have completed the quiz!"); //The quiz is completed
        document.write("Your Answers:"); //Displays their answers
        document.write('\n' + questionTop[0] + " + " + questionBot[0] + " = " + answers[0] + "  Correct Answer is: " + correct[0]);
        document.write('\n' + questionTop[1] + " + " + questionBot[1] + " = " + answers[1] + "  Correct Answer is: " + correct[1]);
        document.write('\n' + questionTop[2] + " + " + questionBot[2] + " = " + answers[2] + "  Correct Answer is: " + correct[2]);
        document.write('\n' + questionTop[3] + " + " + questionBot[3] + " = " + answers[3] + "  Correct Answer is: " + correct[3]);
        document.write('\n' + questionTop[4] + " + " + questionBot[4] + " = " + answers[4] + "  Correct Answer is: " + correct[4]);
        document.write('\n' + questionTop[5] + " + " + questionBot[5] + " = " + answers[5] + "  Correct Answer is: " + correct[5]);
        document.write('\n' + questionTop[6] + " + " + questionBot[6] + " = " + answers[6] + "  Correct Answer is: " + correct[6]);
        document.write('\n' + questionTop[7] + " + " + questionBot[7] + " = " + answers[7] + "  Correct Answer is: " + correct[7]);
        document.write('\n' + questionTop[8] + " + " + questionBot[8] + " = " + answers[8] + "  Correct Answer is: " + correct[8]);
        document.write('\n' + questionTop[9] + " + " + questionBot[9] + " = " + answers[9] + "  Correct Answer is: " + correct[9]);
        document.write('\n' + "You got " + correctAnswers + " answers right out of 10."); //Shows how many answers they got right
        document.write('\n' + "You got " + correctAnswers*10 + "% of the questions right."); //Calculates their percent right
        document.write('\n' + '<button id="newQuiz" type="button" onclick="window.location.reload()">New Quiz</button>'); //Creates new button to reload the screen and start again
    }
}

</script>

它位于以下网站上:http://www.innogeek.com/java/index.html代码位于http://www.innogeek.com/java/frame.html的iFrame中

EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2012-01-30 19:14:51

nextQuestion()更改为:

代码语言:javascript
运行
AI代码解释
复制
function nextQuestion()
{
    var txtAnswer = document.getElementById('txtAnswer'); //<-- ADD THIS
    var txtCarry = document.getElementById('txtCarry'); //<-- AND THIS

    if(txtAnswer.value === "") //Check to see if they answered the question
    {
        alert("You didn't answer the question."); //Tell them they didn't
    }
...
}

您的问题是在使用txtAnswer变量之前没有对其进行定义。

一些浏览器会自动将DOM ID映射到Javascript变量(我相信IE也会这样做),但你不能真的指望它能工作。

票数 2
EN

Stack Overflow用户

发布于 2012-01-30 19:16:25

在使用txtAnswer变量之前,您尚未声明该变量。

票数 2
EN

Stack Overflow用户

发布于 2012-01-30 19:27:46

您的问题是没有定义名为txtAnswer的变量。我认为Chrome将带有id的DOM元素映射到同名的变量(这是一种你不能依赖的行为)。我建议您添加下面这一行来开始您的nextQuestion函数:

代码语言:javascript
运行
AI代码解释
复制
var txtAnswer = document.getElementById("txtAnswer");
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9069311

复制
相关文章
OpenStack显示项目列表
[root@controller ~]# openstack project list ID Name ad8d7966165b4619aab21300e50f7020 service b03aac1f6ae94f7bada2afa8f2064312 admin bdc7f07c4d2c42439d3f4ecb4a3d7b59 myproject
院长技术
2020/06/13
1.2K0
KaTeX 数学符号列表[通俗易懂]
KaTeX 是一个快速,易于使用的JavaScript库,用于在Web上进行TeX数学渲染。 KaTeX兼容所有主流浏览器,包括Chrome,Safari,Firefox,Opera,Edge和IE 9-11。 KaTeX支持很多(但不是全部)LaTeX语法和许多LaTeX软件包。
全栈程序员站长
2022/11/17
2.6K0
Easyui datagrid 设置内容超过单元格宽度时自动换行显示
<table id='tt' class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:500px" data-options="
授客
2019/09/10
2.2K0
Easyui datagrid 设置内容超过单元格宽度时自动换行显示
Excel实战技巧96:高亮显示内容为同年同月的单元格
Excel的条件格式是一项很强大很实用的功能,能够实现很多需要VBA编码才能实现的效果。本文是条件格式的一个应用示例。
fanjy
2020/12/18
2.2K0
Excel实战技巧96:高亮显示内容为同年同月的单元格
Excel单元格内容合并的技巧!!!
今天给大家分享单元格内容合并的技巧! ▽ 之前推送过一篇单元格数据分裂的技巧,很多同学都私信我说很实用,并且希望以后能够多写一些这种可以瞬间提升工作效率的小技巧! 于是小魔方灵机一动,想到了既然分列的
数据小磨坊
2018/04/10
2.2K0
Excel单元格内容合并的技巧!!!
centos打开windows的ftp 无法显示内容 显示空白内容
centos下gnome打开windows FTP显示空白,无内容,windows下 打开正常。
全栈程序员站长
2022/07/05
6.3K0
centos打开windows的ftp 无法显示内容 显示空白内容
Excel 怎样去掉单元格中的回车符号
1、同时按下 CTRL+H调出"查找---替换"对话框; 2、在查找中输入:按住ALT ,小键盘输入 10 ,然后松开ALT; 3、在替换中写入要替换的符号; 这样就将回车符换成其他符号了。 注: 笔记本电脑,一般通过功能键与键盘右上方的NumLock(或者NumLk,不同的笔记本不一样)启动小键盘,然后你在查找处按着Alt键输入小键盘的10(一般是字母J和M)
hankleo
2020/09/16
2.2K0
Excel VBA取白色单元格内容黄色的单元格的Address
哆哆Excel
2023/09/09
3650
Excel VBA取白色单元格内容黄色的单元格的Address
GridControl控件单元格居中显示
GridControl控件单元格居中显示 下面这样设置一步到位,不用再去Columns里面设置每一列的TextOptions属性了
别团等shy哥发育
2023/02/27
1.1K0
GridControl控件单元格居中显示
POI读取excel某个单元格内容
POI是一个不错的库,我们可以使用这个库读写EXCEL,WORD等类型文件,EXCEL尤其使用比较广泛,下面直接给出代码:
johnhuster的分享
2022/03/28
8590
Angular 显示英雄列表
在本页面,你将扩展《英雄指南》应用,让它显示一个英雄列表, 并允许用户选择一个英雄,查看该英雄的详细信息。
HoneyMoose
2019/05/30
4.5K0
React Native的列表显示
前言 在一个移动App中,我们最常用的内容展现形式就是列表。今天,我们尝试用React Native完成对列表的开发。 ListView ListView作为一个React Native官方提供的控件,我们需要了解它的属性。 dataSource 是列表的数据源,通常以一个数组的形式传给ListView。 renderRow 是列表的表现层,我们可以获得dataSource的单项数据,然后用于单项渲染。 官方例子 import React, { Component } from 'react'; impor
Oceanlong
2018/07/03
1.9K0
Angular 显示英雄列表
在本页面,你将扩展《英雄指南》应用,让它显示一个英雄列表, 并允许用户选择一个英雄,查看该英雄的详细信息。
HoneyMoose
2019/05/30
4K0
OpenStack显示角色列表
[root@controller ~]# openstack role list ID Name 2e227c837d0741c0b5c854f82a0a1cae admin 32c153c3ecfd4bc0ad425f796b5acf11 myrole 576f58a9b30b43ca9fb69ddfc48484a7 member 84268da464474db6acf643e6ee724e1d reader
院长技术
2020/06/13
1.1K0
国际化之货币符号显示
我发现手机上显示的货币符号跟实际遇到的可能不一样,为此我逐一查询了不同国家/地区的显示。大部分是确定的,有几个国家不太确定。
meteoric
2018/11/20
1.4K0
如何通过css控制内容显示顺序 第二行的内容优先显示
  我们有时进行网页设计时为了想让用户感兴趣的内容优先显示在前,又不想改动代码的先后顺序,要怎么操作呢?(或者换种说法:源代码中要先看到A再看到B,而视觉上是先B再A)举个简单的例子,想让第二行的内容
ytkah
2018/03/05
2.9K0
如何通过css控制内容显示顺序 第二行的内容优先显示
Excel单元格内容批量转入批注
2017年最后一个工作日下午,同桌扔来一个Excel工作簿,类似如下,需要将右侧单元格中的内容批量写入左侧单元格的批注中。
wujunmin
2021/09/07
1.6K0
Excel单元格内容批量转入批注
怎样快速合并多个单元格的内容到一个单元格内?
1、点击[文本] 2、按<空格>键 3、按<Ctrl+Enter>键 4、点击[文本] 5、点击[文本] 6、按<Enter>键
裴来凡
2022/05/28
1.3K0
怎样快速合并多个单元格的内容到一个单元格内?
问与答95:如何根据当前单元格中的值高亮显示相应的单元格?
Q:这个问题很奇怪,需要根据在工作表Sheet1中输入的数值高亮显示工作表Sheet2中相应的单元格。具体如下:
fanjy
2021/03/12
3.9K0
Canvas多列表文字的显示 原
(adsbygoogle = window.adsbygoogle || []).push({});
tianyawhl
2019/04/04
9730

相似问题

显示项目符号的AutoComplete列表

12

表格单元格内的项目符号列表

119

显示以项目符号居中的列表

15

jQTouch列表项目符号不显示

30

在物化列表中显示项目符号

30
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文