


Example showing JS implementing a simple multiple-choice assessment system
This article will share with you the example code of a simple multiple-choice assessment system implemented in js. It is very good and has reference value. Friends who need it can refer to it
Includes content: JS encapsulation form, JS verification form
It is said to be an evaluation system, but it feels like it can only be regarded as a small demo. It is very watery, has no database, and only uses JS to make a simple multiple-choice evaluation system.
----- -------------------------------------------------- --------------------------
1. Design ideas
Form encapsulation:
[1] Since it is submitted using JS encapsulation, there is no need for form tags
[2] Place multiple input tags as input items
【3】Write JS to obtain input items and submit them to another page through get method
Verification form (display results)
【1】Get the parameters passed in by get
【2】Parse through JS
【3】Display to the corresponding location
----------------------- -------------------------------------------------- -------
##2. The reference source code is as follows
request.html<html> <head> <title>考试系统</title> <meta http-equiv="accept-charset" charset="utf-8"> <script src="jquery.min.js"></script> <script type="text/javascript"> function getjson() { var radio = new Array(); for (var i = 1; i <= 5; i++) {//获取radio的值 var radio_name = new String("radio_" + i); radio[i - 1] = $('input:radio[name=' + radio_name + ']:checked').val() } for (var i = 1; i <= 2; i++) {//获取checkbox的的输入 var checkbox_name = new String("checkbox_" + i); var chk_value = []; $('input:checkbox[name=' + checkbox_name + ']:checked').each(function () { chk_value.push($(this).val()); }); radio[i + 4] = "";//置为空 for (var j = 0; j < chk_value.length; j++) { radio[i + 4] = radio[i + 4] + chk_value[j]; } } //数组转json串 var json = JSON.stringify(radio); return json; } function my_confirm() { var json = getjson(); var msg = "您真的答案是:" + json + ",是否确认提交"; if (confirm(msg) == true) { window.location.href = "result.html?radio=" + 5 + "checkbox=" + 2 + "&json=" + json; } else { return false; } } $(function () { var m = 1; var s = 10; setInterval(function () { if (m >= 0) { if (s < 10) { $('#time').html("剩余时间:" + m + ':0' + s); } else { $('#time').html("剩余时间:" + m + ':' + s); } s--; if (s < 0) { s = 59; m--; } if (m == 0 && s < 1) { window.location.href = "result.html?radio=" + 5 + "checkbox=" + 2 + "&json=" + getjson(); } } }, 1000) }) </script> </head> <body> <h3 id="学年期末测试题">2016--2017学年期末测试题</h3> <p id="time" style="color:red;float: right;margin: 12px 20px 0 0;padding: 0 0 0 0;font-size: xx-large"></p> <br/><br/><br/> <hr/> <h4 id="一-单选题-每题-分-满分-分">一、单选题(每题12分,满分60分)</h4> 1.当方法遇到异常又不知如何处理时,下列() 做法是正确的。<br> <input type="radio" name="radio_1" value="A">A、捕获异常<br> <input type="radio" name="radio_1" value="B">B、抛出异常<br> <input type="radio" name="radio_1" value="C">C、声明异常<br> <input type="radio" name="radio_1" value="D">D、嵌套异常<br> 2.下列说法错误的是() <br> <input type="radio" name="radio_2" value="A">A、在java中一个类被声明为final类型,表示该类不能被继承。<br> <input type="radio" name="radio_2" value="B">B、当一个对象被当作参数传递到一个方法后,此方法可改变这个对象的属性,这叫引用传递。<br> <input type="radio" name="radio_2" value="C">C、一个类不能既被声明为 abstract,又被声明为final。<br> <input type="radio" name="radio_2" value="D">D、方法的覆盖(Overriding)和重载(Overloading)是Java多态性的表现,他们没有区别。<br> 3.下列创建数组的方法哪个是错误的? <br> <input type="radio" name="radio_3" value="A">A、Date[] arr = new Date[5];<br> <input type="radio" name="radio_3" value="B">B、Date arr[] = new Date[];<br> <input type="radio" name="radio_3" value="C">C、Date arr[][] = new Date[4][5];<br> <input type="radio" name="radio_3" value="D">D、Date arr[][] = new Date[4][];<br> 4.在读文件Employee.txt 时,可以直接使用该文件作为参数的类是() <br> <input type="radio" name="radio_4" value="A">A、BufferedReader<br> <input type="radio" name="radio_4" value="B">B、FileInputStream<br> <input type="radio" name="radio_4" value="C">C、DataOutputStream<br> <input type="radio" name="radio_4" value="D">D、DataInputStream<br> 5.下列关于线程的说法中,错误的是? <br> <input type="radio" name="radio_5" value="A">A、线程必须通过方法start() 来启动。<br> <input type="radio" name="radio_5" value="B">B、线程创建后,其优先级是可以改变的。<br> <input type="radio" name="radio_5" value="C">C、实现Runnable接口或者从Thread类派生的线程类没有区别。<br> <input type="radio" name="radio_5" value="D">D、当对象用synchronized 修饰时,表明该对象在任一时刻只能由一个线程访问。<br> <br/> <h4 id="二-多选题-每题-分-满分-分-错选-少选-多选不得分">二、多选题(每题20分,满分40分,错选、少选、多选不得分)</h4> 6.下列说法正确的是() <br> <input type="checkbox" name="checkbox_1" value="A">A、在java中一个类被声明为final类型,表示该类不能被继承。<br> <input type="checkbox" name="checkbox_1" value="B">B、当一个对象被当作参数传递到一个方法后,此方法可改变这个对象的属性,这叫引用传递。<br> <input type="checkbox" name="checkbox_1" value="C">C、一个类不能既被声明为 abstract,又被声明为final。<br> <input type="checkbox" name="checkbox_1" value="D">D、方法的覆盖(Overriding)和重载(Overloading)是Java多态性的表现,他们没有区别。<br> 7.当方法遇到异常又不知如何处理时,下列() 做法是不正确的。<br> <input type="checkbox" name="checkbox_2" value="A">A、捕获异常<br> <input type="checkbox" name="checkbox_2" value="B">B、抛出异常<br> <input type="checkbox" name="checkbox_2" value="C">C、声明异常<br> <input type="checkbox" name="checkbox_2" value="D">D、嵌套异常<br> <hr/> <input type="button" onclick="my_confirm()" value="考试完成"> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>考试结果</title> <script src="jquery.min.js"></script> <script> //获取url中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象 var r = window.location.search.substr(1).match(reg); //匹配目标参数 if (r != null) return unescape(r[2]); return null; //返回参数值 } function showResult() { var answer = ["B", "D", "B", "B", "D", "ABC", "ACD"];//标准答案 var answer_score = [12, 12, 12, 12, 12, 20, 20];//答案的分数 var user_answer = JSON.parse(getUrlParam("json"));//获取用户答案 var radio_num = parseInt(getUrlParam("radio"));//获取单选个数 var checkbox_num = parseInt(getUrlParam("checkbox"));//获取多选个数 var radio_result = 0;//单选分数 var checkbox_result = 0;//多选分数 var radio_right_num = 0;//单选答对个数 var checkbox_right_num = 0;//多选答对个数 var result = 0;//总分数 var user_answer_result = new Array();//用户没到题的答题情况 for (var i = 0; i < user_answer.length; i++) { if (user_answer[i] == answer[i]) { if (i < radio_num) { radio_result = radio_result + answer_score[i]; radio_right_num++; } else { checkbox_result = checkbox_result + answer_score[i]; checkbox_right_num++; } user_answer_result[i] = "正确"; } else { user_answer_result[i] = "错误"; } } result = checkbox_result + radio_result; //结果展示 var show_result1; var show_result2; var show_result3; var show_result4; var show_result5; var show_result6; show_result1 = "你的答案结果为:"; for (var i = 0; i < user_answer.length; i++) { show_result1 = show_result1 + (i + 1) + ":" + user_answer_result[i] + "; "; } show_result2 = "总题目个数:" + user_answer.length; show_result3 = "答对单选题题目个数:" + radio_right_num + "; 得分:" + radio_result; show_result4 = "答对多选题题目个数:" + checkbox_right_num + "; 得分:" + checkbox_result; show_result5 = "答错题目个数:" + (user_answer.length - radio_right_num - checkbox_right_num); show_result6 = " 本次考试总成绩为:" + result; $("p#show_result1").html(show_result1); $("p#show_result2").html(show_result2); $("p#show_result3").html(show_result3); $("p#show_result4").html(show_result4); $("p#show_result5").html(show_result5); $("p#show_result6").html(show_result6); } </script> </head> <body> <h2 id="考试结束">考试结束!</h2> <hr/> <input type="button" onclick="showResult()" value="查看结果"> <p id="show_result1"> <p> <hr/> <p id="show_result2"></p> <p id="show_result3"></p> <p id="show_result4"></p> <p id="show_result5"></p> <hr/> <p id="show_result6"></p> </body> </html>
The above is the detailed content of Example showing JS implementing a simple multiple-choice assessment system. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The hard disk serial number is an important identifier of the hard disk and is usually used to uniquely identify the hard disk and identify the hardware. In some cases, we may need to query the hard drive serial number, such as when installing an operating system, finding the correct device driver, or performing hard drive repairs. This article will introduce some simple methods to help you check the hard drive serial number. Method 1: Use Windows Command Prompt to open the command prompt. In Windows system, press Win+R keys, enter "cmd" and press Enter key to open the command

WallpaperEngine is a software commonly used to set desktop wallpapers. Users can search for their favorite pictures in WallpaperEngine to generate desktop wallpapers. It also supports adding pictures from the computer to WallpaperEngine to set them as computer wallpapers. Let’s take a look at how wallpaperengine sets the lock screen wallpaper. Wallpaperengine setting lock screen wallpaper tutorial 1. First enter the software, then select installed, and click "Configure Wallpaper Options". 2. After selecting the wallpaper in separate settings, you need to click OK on the lower right. 3. Then click on the settings and preview above. 4. Next

Does Wallpaper support family sharing? Unfortunately, it cannot be supported. Still, we have solutions. For example, you can purchase with a small account or download the software and wallpapers from a large account first, and then change to the small account. Simply launching the software is perfectly fine. Can wallpaperengine be family shared? Answer: Wallpaper does not currently support the family sharing function. 1. It is understood that WallpaperEngine does not seem to be suitable for family sharing environments. 2. In order to solve this problem, it is recommended that you consider purchasing a new account; 3. Or download the required software and wallpapers in the main account first, and then switch to other accounts. 4. Just open the software with a light click and it will be fine. 5. You can view the properties on the above web page"

iBatis vs. MyBatis: Which should you choose? Introduction: With the rapid development of the Java language, many persistence frameworks have emerged. iBatis and MyBatis are two popular persistence frameworks, both of which provide a simple and efficient data access solution. This article will introduce the features and advantages of iBatis and MyBatis, and give some specific code examples to help you choose the appropriate framework. Introduction to iBatis: iBatis is an open source persistence framework

When using wallpaper, users can download various wallpapers they like for use. Many users do not know which folder the wallpapers are in. The wallpapers downloaded by users are stored in the content folder. Which folder is the wallpaper in? Answer: content folder. 1. Open File Explorer. 2. Click "This PC" on the left. 3. Find the "STEAM" folder. 4. Select "steamapps". 5. Click “workshop”. 6. Find the “content” folder.

Users can download various wallpapers when using WallpaperEngine, and can also use dynamic wallpapers. Many users do not know whether there are viruses when watching videos on WallpaperEngine, but video files cannot be used as viruses. Is there any virus when watching movies on wallpaperengine? Answer: No. 1. Just video files cannot be used as viruses. 2. Just make sure to download videos from trusted sources and maintain computer security measures to avoid the risk of virus infection. 3. Application wallpapers are in apk format, and apk may carry Trojan viruses. 4. WallpaperEngine itself does not have viruses, but some application wallpapers in the creative workshop may have viruses.

I guess you are not familiar with the Microsoft Edge browser, but do you know how to change the font size in the Microsoft Edge browser? The following article describes how to change the font size in the Microsoft Edge browser. Let's study it together. First, find the Microsoft Edge browser and double-click it to open it. You can find the Microsoft Edge browser in the desktop shortcut, start menu or taskbar, and double-click to open it. Secondly, open the [Settings] interface to enter this browser interface, click the [...] logo in the upper left corner; double-click [Settings] to open the settings interface. Again, find and open the [Appearance] interface and scroll down with the mouse

Users can change their computer wallpapers when using WallpaperEngine. Many users don't know that WallpaperEngine consumes a lot of power. Dynamic wallpapers consume a little more power than static wallpapers, but not a lot. Does wallpaperengine consume a lot of power? Answer: Not much. 1. Dynamic wallpapers consume a little more power than static wallpapers, but not a lot. 2. Turning on dynamic wallpaper will increase the computer's power consumption and take away a small amount of memory usage. 3. Users do not need to worry about the serious power consumption of dynamic wallpapers.
