-3
//只是在一些計算器上工作如何濃縮這些jQ功能?
//我確定有一個更簡單的方法,但我只是不記得該怎麼做。
//這差不多,但這個網站希望我把更多的話在這個崗位
// asdfasdfasdfsafs
$(document).ready(function(){
console.log('jQ is working');
$(".operator1").click(function(){
var a = document.getElementById('fieldA').value;
var b = document.getElementById('fieldB').value;
parseInt(a);
parseInt(b);
add = +a + +b;
$('#answer').append(add);
});
$(".operator2").click(function(){
var a = document.getElementById('fieldA').value;
var b = document.getElementById('fieldB').value;
sub = (a - b);
$('#answer').append(sub);
});
$(".operator3").click(function(){
var a = document.getElementById('fieldA').value;
var b = document.getElementById('fieldB').value;
mult = a * b;
$('#answer').append(mult);
});
$("#operator4").click(function(){
var a = document.getElementById('fieldA').value;
var b = document.getElementById('fieldB').value;
console.log(a/b);
divi = a/b;
$('divi').appened(divi);
});
function doMath(a, b){
}
});
你真的j ust輸入「asdfasdfasdfsafs」?哦,不,你真的。 -1 – tiwo
是的,我不知道我從來沒有使用過這個網站之前,我已經被拒絕發佈像4次沒有足夠的非代碼內容 –