A と B の入力に対応.
function a_input () {
calc_x () ;
make_lst () ;
}
function b_input () {
calc_x () ;
make_lst () ;
}
function c_input () {
calc_x () ;
make_lst () ;
}
function x_click () {
calc_x () ;
make_lst () ;
}
function main () {
let ia = document.getElementById("in__a") ;
let ib = document.getElementById("in__b") ;
let ic = document.getElementById("in__c") ;
let cx = document.getElementById("cal_x") ;
ia.addEventListener("input",a_input, false) ;
ib.addEventListener("input",b_input, false) ;
ic.addEventListener("input",c_input, false) ;
cx.addEventListener("click",x_click, false) ;
calc_x () ;
make_lst () ;
}
{
main () ;
}
6. A と B の入力にも対応
- 詳細
- カテゴリー: 比率計算
- 参照数: 479