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.
テキストボックスのhtmlをクリックすると、フォーカスが表示されます(|)。「|」を削除したい テキストボックスから、キーアップイベントをキャッチしたいのでテキストボックスを無効にしません
テキストボックスからカーソルを削除する方法はないと思いますが、それには正当な理由があります。ただし、ゲームなどの重要なイベントをキャッチし、カーソルを表示したくない場合があります。この場合、divのようなものを使用して、keydown/keyupイベントをキャッチできます。
次に例を示します。
<div onkeyup="alert('hi')" tabindex="1" style="width: 400px; height: 400px; border: 1px solid black;"></div>