Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

section_2.js 884B

1234567891011121314151617181920212223
  1. $(function() {
  2. var parameter = $(".section_2_html_root").data("page-params");
  3. parameter = JSON.parse(parameter);
  4. var sectionsHtmlArr = [
  5. "section_2_class_all",
  6. // "section_2_class_single",
  7. // "section_2_level",
  8. // "section_2_part",
  9. // "section_2_lin_all",
  10. // "section_2_lin_single",
  11. // "section_2_excellent_all"
  12. ];
  13. $(".section_2.score_analysis_root").html(sectionsHtmlArr.map(function (htmlName) {
  14. return "<div class='" + htmlName + "_html_root'></div>";
  15. }).join(""));
  16. sectionsHtmlArr.forEach(function(htmlName) {
  17. $(".section_2.score_analysis_root ." + htmlName + "_html_root").data("page-params", JSON.stringify({
  18. cjfx: parameter.cjfx,
  19. djfx: parameter.djfx
  20. }));
  21. $(".section_2.score_analysis_root ." + htmlName + "_html_root").load("./sections/scoreAnalysis/" + htmlName + ".html");
  22. });
  23. });