私が今持っているものはほとんど良いですが、テーブルの行に沿ってマウスを動かすと、何らかの理由でボタンが削除されます。これは望ましくありません。テーブル全体をマウスアウトした場合に削除するボタンのみです。
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;
}