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.
テーブル全体を href に入れても意味がありません。テーブルのヘッダー部分だけを href に入れてみませんか。
また
簡単な編集ボタンをクリックして、編集用の URL に移動するだけです。
HTML :
<button id='button-id'>Edit</button>
JQuery コード:
$('#button-id').click(function() { window.location.pathname = '/yoururl'; });