Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
163 views
in Technique[技术] by (71.8m points)

Change prices for monthly and anually section by jquery?

I have written some jquery code to change the currency from one to another. I have some different plans for monthly and annually so I used a toggle switch for it and I Just want to know that how to add the price for both plans by my jquery code. Please check the code below

var prices = [
1500,
2000,
342
];            
var currencies = {
USD: {
rate: 1,
sign: "$",
something_at_the_end: "test"
}, 
EUR: {
rate: 0.86,
sign: "€",
something_at_the_end: "EURO TEST"
}
};
function updatePrices(currency) {
var elements = document.getElementsByClassName("price");
prices.forEach((price, index) => {
elements[index].innerHTML = currency.sign + parseFloat(price * currency.rate) + 
currency.something_at_the_end
});
}
document.getElementById("selector").onchange = function () {
updatePrices(currencies[this.value]);
}

updatePrices(currencies.USD);

Currently, it shows prices 1500, 2000, 342 for the first three pricing tables. So when I click on annually toggle all the div change to annually from monthly so my question is how to add price for annually section

question from:https://stackoverflow.com/questions/66062024/change-prices-for-monthly-and-anually-section-by-jquery

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...