是否可以将文本从输入转换为字符串或整数?
我有一个输入字段,您可以在其中搜索公司:
<input type="text" id="company" name="company" />
现在我需要将值作为字符串或 int。
谢谢你的帮助。
是否可以将文本从输入转换为字符串或整数?
我有一个输入字段,您可以在其中搜索公司:
<input type="text" id="company" name="company" />
现在我需要将值作为字符串或 int。
谢谢你的帮助。
输入字段的值默认为字符串。您可以通过以下方式将其转换为int
parseInt(document.getElementById("company").value,10);
It is Simple stuff. You can convert by using parseInt() Function.
It will convert your string to Integer.
function convert()
{
var x=document.getElemenyById("company").value;
x=parseInt(x);
}
jQuery版本:
parseInt($( "#company" ).val(), 10);
纯javascript:
parseIntdocument.getElementById('company').value, 10);