diff --git a/Antd 的深入尝试/Button.md b/Antd 的深入尝试/Button.md index 05aeaf3..3e19a14 100644 --- a/Antd 的深入尝试/Button.md +++ b/Antd 的深入尝试/Button.md @@ -6,4 +6,6 @@ const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar); isTwoCNChar("提交") ``` -在这里 isTwoCNChar 是使用 bind 改变作用域后生成的新函数赋值的,它的作用域为 rxTwoCNChar,在这里 rxTwoCNChar.test.bind 实际上相当于 RegExp.prototype.test.bind,它们效果实际上是一致的 \ No newline at end of file +在这里 isTwoCNChar 是使用 bind 改变作用域后生成的新函数赋值的,它的作用域为 rxTwoCNChar,在这里 rxTwoCNChar.test.bind 实际上相当于 RegExp.prototype.test.bind,它们效果实际上是一致的 + +zhu'ya \ No newline at end of file