|
|
@@ -273,8 +273,10 @@ Page({
|
|
273
|
273
|
|
|
274
|
274
|
for(let i=0;i<content.Question.length;i++){
|
|
275
|
275
|
for(let j=0;j<content.Question[i].OptionsEnglish.length;j++){
|
|
276
|
|
- let str=content.Question[i].OptionsChinese[j];
|
|
277
|
|
- content.Question[i].OptionsChinese[j]=str.substr(2);
|
|
|
276
|
+ if (j<4){
|
|
|
277
|
+ let str=content.Question[i].OptionsChinese[j];
|
|
|
278
|
+ content.Question[i].OptionsChinese[j]=str.substr(2);
|
|
|
279
|
+ }
|
|
278
|
280
|
}
|
|
279
|
281
|
let char = content.Question[i].Answer;
|
|
280
|
282
|
let asciiCode = char.charCodeAt(0);
|