.table {
border: 1px solid silver;
border-collapse: collapse;
text-align: center;
}
.table .title-col {
width: 5em;
}
.table .contents-col {
width: 4em;
}
.table thead {
background-color: #f5f5f5;
}
.table th, .table td {
border: 1px solid silver;
}
判別のポイントは次の通り。(要するに結論。)
clickは無理。mouseup、mousedownのみ。
event.whichを利用する
ボタンと値の関係は次の通り
左真ん中右
123
IE8とIE9、Chromeで ...