diff --git a/src/packages/input/input.taro.tsx b/src/packages/input/input.taro.tsx index 32e8a4e518..d88240e831 100644 --- a/src/packages/input/input.taro.tsx +++ b/src/packages/input/input.taro.tsx @@ -141,7 +141,8 @@ export const Input = forwardRef((props: Partial, ref) => { } const handleBlur = (event: any) => { - const val = Taro.getEnv() === 'WEB' ? (event.target as any).value : value + const val = + Taro.getEnv() === 'WEB' ? (event.target as any).value : event.detail.value updateValue(val, 'onBlur') setTimeout(() => setActive(false), 200) }