``` js method = options.method || 'blur' ``` 这样实际上不能取值false。修改如下: ``` js method = options.method === false ? false : options.method || 'blur' ```