我是学生,是我大学作业的一部分,我必须使用javascript创建一个测验。
在测验结束时,我需要告诉用户正确回答了多少问题,并向他们展示正确的答案。
我决定在警告框中执行此操作(我确信有更好/更好的方法可以做到这一点,但我对编码很新,所以我对这个领域还不是很有信心。)
唯一的问题是,当我尝试包含换行符以便答案以一种很好的方式显示时,它不起作用。请有人可以查看以下编码并提供一些建议或指导我指导一个好的教程吗?我已经在这里阅读了一些主题并尝试了W3Schools,但似乎没有任何工作。
alert("Out of a score of 8 your score is" + score + "\n The correct answers are" + "\n 1c - A method for skipping over long lists of links or other lengthy content")
答案 0 :(得分:2)
换行没问题。我怀疑得分没有正确定义。
新线条在本演示中得到证明:
var score = 100;
alert("Out of a score of 8 your score is" + score + "\n The correct answers are" + "\n 1c - A method for skipping over long lists of links or other lengthy content")