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'; });