Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
とにかく、ユーザーが改行を入力するのを止める検証を TextArea に追加する方法はありますか (基本的には、'Enter' を押すのを止めます)?
これが役立つと思います:
<textarea onkeydown="if(event.keyCode == 13) return false;"></textarea>