We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a2ff0 commit 7094b33Copy full SHA for 7094b33
docs/bom/arraybuffer.md
@@ -164,8 +164,8 @@ FileReader 对象提供四个方法,处理 Blob 对象。Blob 对象作为参
164
165
```javascript
166
// HTML 代码如下
167
-// <input type=’file' onchange='readfile(this.files[0])'></input>
168
-// <pre id='output'></pre>
+// <input type="file" onchange="readfile(this.files[0])"></input>
+// <pre id="output"></pre>
169
function readfile(f) {
170
var reader = new FileReader();
171
reader.readAsText(f);
@@ -210,3 +210,4 @@ function typefile(file) {
210
};
211
}
212
```
213
+
0 commit comments