現在、ボタンのクリック数を表示するスパンタグがあります。現在、数値が3桁を超える場合、スパンタグ内に収まりません。スパンタグを調整可能にすることはできますか、それとも幅を調整可能にして、常にオンクリック数を含めることができますか?
より多くの桁に対応するように幅を変更できますが、実際に発生するonclickイベントの数を予測できないため、調整可能にしたいと思います。
var counts = {
'Apples': 0,
'Oranges': 0,
'total': 0
};
function countFruit(type) {
document.getElementById('fruitCount').innerHTML = ++counts['total'];
document.getElementById(type + 'Count').innerHTML = ++counts[type];
}
#OrangesCount{
z-index: 20;
position:absolute;
top:70px;
left:45%;
background-color:black;
width:80px;
border:2px solid green;
font-family: 'BPdotsUnicaseSquareBold';
font-size:25px;
color:yellow;
padding-right:4px;
padding-left:4px;
}
#ApplesCount{
z-index: 20;
position:absolute;
color:yellow;
top:70px;
right:45%;
background-color:black;
width:80px;
border:2px solid green;
font-family: 'BPdotsUnicaseSquareBold';
font-size:25px;
}
<a id="buttonright" href="#" onclick="countFruit('Apples'); return false;">
<a id="buttonleft" href="#" onclick="countFruit('Oranges'); return false;">
<span id="ApplesCount"></span>
<span id="OrangesCount"></span>