我一直在尝试为此找到解决方案,我想将焦点状态添加到我的输入字段中。但它似乎不起作用:
const textareaRef = useRef<HTMLInputElement>(null);
...
const handleClick = () => {
if (textareaRef.current) {
alert('Field clicked');
textareaRef.current.focus();
textareaRef.current.click();
}
};
...
<input
ref={textareaRef}
onClick={handleClick}
onFocus={(e) => e.persist()}
spellCheck="false"
/>
这是不行的,主要原因是要显示手机键盘。
蓝山帝景
慕哥6287543
相关分类