Basic Javascript math text field

▼魔方 西西 提交于 2019-12-12 20:34:06

问题


hello im new and learning javascript.

I'm trying to make a program of addition through text field.

Check the html code on js fiddle http://jsfiddle.net/fCXMt/

What I need to know is how can I accept user input in text field and diplay output in P tag.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>untitled</title>
</head>
<body>
<input id="value1" type="text" />
<span> + </span>
<input id="value2" type="text" />
<input type="submit" onclick="output();">
<p id="result"> </p>

<script type="text/javascript" language="javascript" charset="utf-8">
var value1 = document.getElementById('value1').innerHTML;
var value2 = document.getElementById('value2').innerHTML;

function output(){
    document.getElementById('result').innerHTML = value1 + value2;
}

</script>
</body>
</html>

回答1:


The property for getting the value of a textbox is value, not innerHTML, so change those, and you will also need to use eval or parseInt on the textbox values, otherwise it will concatenate them as strings.

Also, you need to move your variable declarations inside the function, so that when the function is called, the current values from the textboxes are retreived.

See update fiddle here.




回答2:


You have to grab the values in input fields after the button click, and use the value property (not innerHTML) to do it. Also, make sure you're adding numbers and not appending strings together. Try this:

function output(){
    var value1 = document.getElementById('value1').value;
    var value2 = document.getElementById('value2').value;

    document.getElementById('result').innerHTML = parseInt(value1) + parseInt(value2);
}



回答3:


You need to access the "value" property of the input fields and parse them as integers:

var value1 = parseInt(document.getElementById('value1').value);
var value2 = parseInt(document.getElementById('value2').value);



回答4:


You only read the values once, you should read them in the output function; You need to parse them to integers as well since 1+4 will become 14 if you use strings. Could be better but this should work.

<script type="text/javascript" language="javascript" charset="utf-8">

function output(){
    var value1 = parseInt(document.getElementById('value1').value);
    var value2 = parseInt(document.getElementById('value2').value);
    document.getElementById('result').innerHTML = value1 + value2;
}

</script>



回答5:


For completeness: your scripting could be better. Based on your form I cooked up another jsfiddle example.




回答6:


While getting value, just multiple it by 1, it will parse the value into number

const value1 = document.getElementById('value1').innerHTML.value * 1;
const value2 = document.getElementById('value2').innerHTML.value * 1;
document.getElementById('result').innerHTML = value1 + value2;


来源:https://stackoverflow.com/questions/6395777/basic-javascript-math-text-field

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!