admin管理员组文章数量:1344966
Consider the following code: HTML:
<input type="hidden" value=3 name="hello" id="test"/>
<input type="button" value="test me!" onclick="checkType();" />
JS:
function checkType(){
var num = document.getElementById("test").value;
alert(typeof num + ": " + num);
}
Or see this fiddle.
As you can observe, i placed a number for the value attribute of the HTML hidden element. I researched about the matter not find anything but to use typeof function to show what kind of data type the thing im lookin at is.
I dont know if it was valid as well anyway, placing an un-qouted number in the value attribute.
But the thing i want to acplish is, store a number hidden away from the UI, and then take it back and correctly show it as number back to the screen..
Been searching for about 3 days now, and rubber ducking* hasnt had any effect at all by now. And No JS gurus here in my office.
Best regards,
Consider the following code: HTML:
<input type="hidden" value=3 name="hello" id="test"/>
<input type="button" value="test me!" onclick="checkType();" />
JS:
function checkType(){
var num = document.getElementById("test").value;
alert(typeof num + ": " + num);
}
Or see this fiddle.
As you can observe, i placed a number for the value attribute of the HTML hidden element. I researched about the matter not find anything but to use typeof function to show what kind of data type the thing im lookin at is.
I dont know if it was valid as well anyway, placing an un-qouted number in the value attribute.
But the thing i want to acplish is, store a number hidden away from the UI, and then take it back and correctly show it as number back to the screen..
Been searching for about 3 days now, and rubber ducking* hasnt had any effect at all by now. And No JS gurus here in my office.
Best regards,
Share Improve this question asked Sep 29, 2014 at 3:18 Fasev MoweasckFasev Moweasck 1012 gold badges3 silver badges14 bronze badges 6- 6 All input values are strings. Whatever value you assign it will be converted to a string. – p.s.w.g Commented Sep 29, 2014 at 3:18
- convert it back to to an integer. developer.mozilla/en-US/docs/Web/JavaScript/Reference/… – beaglebets Commented Sep 29, 2014 at 3:22
- hi sirs, do you have any idea how can i make things dynamic converting things to int when they are int, otherwise as string. used typeof function just to fail – Fasev Moweasck Commented Sep 29, 2014 at 3:38
- Presumably you should know which values should be numbers and which should be strings. Therefore you should apply this knowledge to your code. – Lee Taylor Commented Sep 29, 2014 at 3:40
- Use parseInt(document.getElementById("test").value,10) for integers or parseFloat( document.getElementById("test").value) for decimal values - noe the casing of the mands. – user2417483 Commented Sep 29, 2014 at 3:47
1 Answer
Reset to default 9As p.s.w.g said, input values are strings. If you really want to convert it to Number type, just use the unary + operator.
var num = +document.getElementById("test").value;
Updated fiddle here: http://jsfiddle/0h61xwkg/3/
本文标签: javascriptHidden Field Element with value as number always return stringStack Overflow
版权声明:本文标题:javascript - Hidden Field Element with value as number always return string - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784294a2538396.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论