1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| <link rel="stylesheet" type="text/css" href="css/Mexam.css"/> <script type="text/javascript" src="js/zepto.min.js"></script> <script type="text/javascript" src="js/Mexam.js"></script>
<div class="overlay" id="overlay"></div>
<script type="text/javascript"> var data = [ { id: "i88bac6k8yra-9bwr-04fq", title: "单选题题目", type: 1, content: [ "选项A", "选项B", "选项C", "选项D", ] }, { id: "i88bac6k8yra-9bwr-04fq", title: "多选题题目", type: 2, content: [ "选项A", "选项B", "选项C", "选项D", "选项E", "选项F", "选项G", "选项H", "选项J", ] }, { id: "i88bac6k8yra-9bwr-04fq", title: "判断题题目", type: 4, content: [ "选项A", "选项B", "选项C", "选项D", ] }, ];
Mexam({ title: 'Mexam 移动端在线做题', data: data, wrap: '#overlay', }); </script>
|