We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af932ee commit 2602628Copy full SHA for 2602628
1 file changed
1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/debounce.view/index.html
@@ -1,18 +1,18 @@
1
<!doctype html>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
3
4
-Function <code>handler</code> is called on this input:
+在这个输入框中调用的是函数 <code>handler</code>:
5
<br>
6
<input id="input1" placeholder="type here">
7
8
<p>
9
10
-Debounced function <code>debounce(handler, 1000)</code> is called on this input:
+在这个输入框中调用的是防抖函数 <code>debounce(handler, 1000)</code>:
11
12
<input id="input2" placeholder="type here">
13
14
15
-<button id="result">The <code>handler</code> puts the result here</button>
+<button id="result"><code>handler</code> 将结果放到了这儿</button>
16
17
<script>
18
function handler(event) {
0 commit comments