テーブルセルをすべてのブラウザにフォーカスすることはできません。jQueryのドキュメントには次のように書かれています。
The focus event is sent to an element when it gains focus. This event is implicitly applicable to a limited set of elements, such as form elements (<input>, <select>, etc.) and links (<a href>). In recent browser versions, the event can be extended to include all element types by explicitly setting the element's tabindex property. An element can gain focus via keyboard commands, such as the Tab key, or by mouse clicks on the element.
これがすべてのブラウザで機能することを確認するには、CSSクラスを実装し、マウスキーのイベントリスナーを追加します。次に、テーブルセルからcssクラスを追加/削除します。
id="target"
これを使用して要素に焦点を合わせるために
$('#target')。focus();