1つの入力ボックスから2つの数値を加算、減算、乗算するにはどうすればよいですか?
例:入力テキストボックスがあります
<input type = "text" id = "id">
1つのテキストボックスを使用して、2つの数値を加算、減算、乗算する必要があります。追加、サブ、乗算用の別々のボタンがあります。
私はこのようなことを試しました:
var te = 0;
var input = false;
function number(value){
if(input === false){
document.getElementById("id").value += value;
}else{
document.getElementById("id").value = value;
input = false;
}
};
function calc(opr){
if(opr === '+'){
te=te+parseInt(document.getElementById("id").value);
document.getElementById("id").value = te;
input = true;
}
};
追加は正常に機能しています。掛け算、引き算、これに等しいものを足す必要があります。