我现在所拥有的几乎是好的,但是当您沿着表格行移动鼠标时,按钮会由于某种原因被移除,这是我不想要的。如果您将鼠标移出整个表格,我只会删除要删除的按钮。
HTML:看起来像任何具有 3 列 12 行 + 3 列的旧表<thead>
。
JS:
$(document).ready(function(){
$('#editData tr').hover(function(){
$('button').remove();
$(this).children('td:last-child').append('<button id="editButton">Edit</button>');
});
$('#editData').mouseout(function(){
$('button').remove();
});
});
CSS:
#editData {
width: 500px;
margin: auto;
background: #dadce1;
margin-bottom: 50px;
box-shadow: 0 0 10px 1px #e1e1e1;
}
#editData tbody {
border: 1px solid #b8b8b8;
border-top: 0;
}
#editData thead {
border: 1px solid #b8b8b8;
border-bottom: 0;
background: rgba(255,255,255,0.7);
font-size: 20px;
}
#editData thead th {
padding: 10px;
font-weight: bold;
text-align: center;
}
#editData th:last-child, #editData tr td:last-child {
width: 40px;
}
#editData tr {
text-align: center;
height: 30px;
}
#editData td {
padding: 3px;
}
#editData tr:nth-child(even) {
background: rgba(255,255,255,0.7);
}
#editButton {
width: 40px;
height: 24px;
border-radius: 5px;
padding: 0;
}