我制作我的caluclator,如果我计算数字,它将写出历史上唯一的答案,但我想写完整的操作。
我想写这样的东西,如果我写5 * 2并且等于10.它必须写成历史:$(document).ready(function() {
$("#backspace").click(function() {
var barValue = $("#bar").val();
$("#bar").val(barValue.substring(0,barValue.length - 1));
});
$("#equal").click(function() {
z1 = $("#bar").val();
$("#history").append(z1 + "<br>");
});
});
。
https://jsfiddle.net/rwLyofbx/
这是我的小代码,但你可以在JSfiddle中看到完整的代码
@events_search_result = Events.search(params[:event][:query])
@events_not_repeat = Events.where.not(repeats: nil)
@combined_events = @events_search_result + @events_not_repeat
@combined_events.apply_will_paginate
答案 0 :(得分:0)
好的,做点什么:
答案 1 :(得分:0)
好的,做同样功能的事情:
function equal() {
$("#history").append($("#bar").val()+"=")
var a3 = c(eval($("#bar").val()))
}
Click Here for Full Code in JSfiddle
其工作