andypliang 6 anni fa
parent
commit
2eb0f6e3ec
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      miniapp/app/wxParse/html2json.js

+ 2
- 2
miniapp/app/wxParse/html2json.js Vedi File

@@ -109,14 +109,14 @@ function html2json(html, bindName) {
109 109
                     var name = attr.name;
110 110
                     var value = attr.value;
111 111
                     if (name == 'class') {
112
-                        console.dir(value);
112
+                        // console.dir(value);
113 113
                         //  value = value.join("")
114 114
                         node.classStr = value;
115 115
                     }
116 116
                     // has multi attibutes
117 117
                     // make it array of attribute
118 118
                     if (name == 'style') {
119
-                        console.dir(value);
119
+                        // console.dir(value);
120 120
                         //  value = value.join("")
121 121
                         node.styleStr = value;
122 122
                     }

Loading…
Annulla
Salva