Home  >  Article  >  Web Front-end  >  js method to add consecutive numbers instead of splicing_javascript skills

js method to add consecutive numbers instead of splicing_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:58:322104browse

Add the value of e1 to e2

Copy code The code is as follows:

var e1= document .getElementById('textbox1').value;
var e2 = document.getElementById("textbox2").value;
document.getElementById('textbox4').value = parseInt(e1) parseInt(e2);
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn