0

我目前有一个跨度标签,它显示按钮的点击次数。现在,如果数字超过三位数,它将不适合 span 标签。我可以调整 span 标签还是调整其宽度,以便它始终包含 onclick 计数?

我可以更改宽度以容纳更多数字,但我希望它可以调整,因为我无法预测实际会发生多少 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>
4

2 回答 2

0

如果你需要让一个元素自动调整它的宽度,不要让它的宽度固定。您可以指定一个最小宽度,例如下面的示例 CSS。

#OrangesCount{
z-index: 20;
position:absolute;
top:70px;
left:45%;
background-color:black;

/*removed
width:80px;
*/
min-width:80px;

border:2px solid #001855;
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;

/*removed
width:80px;
*/
min-width:80px;

border:2px solid #550010;
font-family: 'BPdotsUnicaseSquareBold';
font-size:25px;
}
于 2012-09-03T00:48:04.320 回答
0

您只需width要从两个 css 中删除:

#ApplesCount{
    z-index: 20;
    position:absolute;
    color:yellow;
    top:70px;
    right:45%;
    background-color:black;
    border:2px solid #550010;
    font-family: 'BPdotsUnicaseSquareBold';
    font-size:25px;
}

这是JSFiddle

于 2012-09-03T00:37:44.713 回答