Jump to content

Помощь по модулю


Recommended Posts

Ну это же не очень сложно, можно сделать на базе JavaScript...

 

$(".button").on("click", function(){

var firstinput = $("input.one").val();

var secondinput = $("input.two").val();

var total = firstinput + secondinput;

$("div").append(total);

})

 

Примерно так!

Link to comment
Share on other sites

×
×
  • Create New...