自動計算機能の実装
自分用のメモです〜
正解かどうかは分かりません!!
が、ひとまず動いたので残しておきます。
function calc (){
const itemPrice = document.getElementById("item-price");
itemPrice.addEventListener("keyup",()=>{
//取得した要素が入力されたら(keyup)イベント発火
tax = parseInt(itemPrice.value * 0.1);
const addTax = document.getElementById("add-tax-price");
addTax.innerHTML = `${tax}円`
//taxはアイテムの値段.valudの10%を小数点以下切り捨て
//表示させる要素を取得して、innnerHTMLで上書き
prof = (itemPrice.value) - (tax)
const priceContent = document.getElementById("profit");
priceContent.innerHTML = prof
})
}
window.addEventListener('load',calc);
めちゃくちゃ頭抱えて悩んでたけど、めちゃくちゃ基礎でした。。
精進します。
以上