ボタン#1、ボタン#2のオンクリック数を表示し、ボタン#1 +ボタン#2のクリック数の合計を表示できるようにしたいと考えています。これまでのところ、私が示すことができたのは合計だけです。
HTML
<button id="1" onclick = "countCar('ferrari');">Button#1</button>
<a>Ferraris</a><span id="ferrariCount"></span>
<a id="showSum">SUM<span id="carCount"></span></a>
<button id="2" onclick = "countCar('toyota');">Button#2</button>
<a>Toyotas</a><span id="toyotaCount"></span>
Javascript
var carCount = 0;
var ferrariCount = 0;
var toyotaCount = 0;
function countCar(type)
{
carCount = carCount + 1;
document.getElementById('carCount').innerHTML = carCount;
ferrariCount = ferrariCount + 1;
toyotaCount = toyotaCount + 1;
if(type =='ferrari'){document.getElementById('ferrariCount').innerHTML = ferrariCount;
}else{
document.getElementById('toyotaCount').innerHTML = toyotaCount;}
};