如何根据点击次数跟踪购买总额
How to keep track of a purchase total based on number of clicks
我试图根据网站按钮的点击次数来跟踪 运行 总数。共有 8 个按钮,点击所有按钮后,总金额应增加 123.45 美元,并提醒总金额。
我的一些HTML
<article class="dog-card">
<img src="images/murphy-card.jpg" alt="a brown and white dog with a questioning look on his face" onclick="dogInfo('Murphy', 'Mix', '3.45')">
<h3>Murphy</h3>
<p><strong>Cost to Adopt:</strong> 3.45</p>
<p>Corrum volorit iandae nimaxim cum restia volor reicid ut et etur sunt arum rendae pla endis re ea erum, qui doluptae</p>
<p class="adopt" onclick="addFee()">Adopt</p>
</article>
到目前为止我的 JS
function addFee() {
let x = 123.45;
let total = ('Your total is $' + x);
alert(total);
}
我知道这个 JS 不是我需要的,但我只是想放入一些东西,这样我就可以验证按钮是否正常工作。
非常感谢任何建议,谢谢!
let LastTotal = 0;
function addFee() {
lastTotal = lastTotal + 123.45;
alert("Your total is $" + lastTotal);
}
我试图根据网站按钮的点击次数来跟踪 运行 总数。共有 8 个按钮,点击所有按钮后,总金额应增加 123.45 美元,并提醒总金额。
我的一些HTML
<article class="dog-card">
<img src="images/murphy-card.jpg" alt="a brown and white dog with a questioning look on his face" onclick="dogInfo('Murphy', 'Mix', '3.45')">
<h3>Murphy</h3>
<p><strong>Cost to Adopt:</strong> 3.45</p>
<p>Corrum volorit iandae nimaxim cum restia volor reicid ut et etur sunt arum rendae pla endis re ea erum, qui doluptae</p>
<p class="adopt" onclick="addFee()">Adopt</p>
</article>
到目前为止我的 JS
function addFee() {
let x = 123.45;
let total = ('Your total is $' + x);
alert(total);
}
我知道这个 JS 不是我需要的,但我只是想放入一些东西,这样我就可以验证按钮是否正常工作。
非常感谢任何建议,谢谢!
let LastTotal = 0;
function addFee() {
lastTotal = lastTotal + 123.45;
alert("Your total is $" + lastTotal);
}