index.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. var $s;
  2. setTimeout(function(){
  3. $s = nbInit({
  4. text1: "txt",
  5. p1: "para",
  6. select: {"": "--",
  7. M: "Male",
  8. F: "Female",
  9. X: "Xenomorph"},
  10. numberTable: [[1,2,3,4,5,6],
  11. [7,8,9,10,11,12],
  12. [13,14,15,16,17,18],
  13. [19,20,21,22,23,24]],
  14. hashTable: [{ name: "Ivan",
  15. surname: "Ivanovv",
  16. age: "57",
  17. note: {value: "Buhaet", name: 'ivanovvsTextArea'},
  18. married: true},
  19. { name: "Petr",
  20. surname: "Petroff",
  21. age: "17",
  22. note: "Tyolki v golove",
  23. married: false,
  24. },
  25. { name: "Mary",
  26. surname: "Tester",
  27. married: true,
  28. note: "Ovulyashka",
  29. age: "27"} ],
  30. checks: [
  31. {check: {name: "first", checked: true},
  32. description: "first check"},
  33. {check: {name: "second", checked: false},
  34. description: "second check"},
  35. {check: {name: "third", checked: true},
  36. description: "third check"},
  37. ],
  38. radios: [
  39. {radio: {name: "sexism", value: "M"},
  40. description: "Male"},
  41. {radio: {name: "sexism", value: "F", checked: true},
  42. description: "Female"},
  43. {radio: {name: "racism", value: "white", checked: true},
  44. description: "White"},
  45. {radio: {name: "racism", value: "black"},
  46. description: "Black"}, ],
  47. });
  48. $s.textarea; $s.select; $s.dzen; $s.check1; $s.note; $s.married; //just for init
  49. $s.btn = {onclick: function(){
  50. var thisLine = this.parentElement.parentElement;
  51. var newLine = thisLine.cloneNode(true);
  52. newLine.nbData = Object.assign({},thisLine.nbData);
  53. thisLine.parentElement.insertBefore(newLine,thisLine);
  54. $s.btn = {onclick: arguments.callee};
  55. }};
  56. document.onchange();
  57. },2000);
  58. document.onchange = function(){
  59. $s.state = "";
  60. $s.state = JSON.stringify($s, null, 4);
  61. }