javascript 检查变量是否为整数
我制作了一个表单,用户可以在其中输入他们想要的弹出窗口的宽度和高度值。我正在使用 window.open 来实现这一点。
所以我想我需要检查宽度和高度的值是否为整数。我有一个函数可以检查变量是否是整数,
function isInteger(possibleInteger) {
return !isNaN(parseInt(possibleInteger));
}
但我不知道如何将此函数调用到宽度和高度函数来检查用户是否输入了整数。有人可以帮忙吗?
I made a form where the user inputs values for width and height that they want for the pop up window to be. I am using window.open
for that.
So I think I need to check if the values for width and height are integer. I have a function that checks that a variable is an integer that is...
function isInteger(possibleInteger) {
return !isNaN(parseInt(possibleInteger));
}
but I don't know how to call this function to the width and height function to check if the user inputted an integer. Can any one help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是对主题中提到的问题的回答,而不是正文中的实际问题:)。
以下方法可以更准确地确定字符串是否为实数。
例如,您当前的方法验证“7.5”。
编辑:根据 machineghost 的评论,我修复了该函数以正确处理数组。新函数如下:
This is an answer to question mentioned in the topic, not the actual one in the body of the text :).
The following method is more accurate on determining if the string is a real integer.
Your current method validates "7.5" for instance.
EDIT: Based on machineghost's comment, I fixed the function to correctly handle arrays. The new function is as follows:
如果您担心性能,可以选择另一个答案。
负载测试结果与 Zafer 在 Chrome 中的答案进行比较:
亲自查看:jsfiddle
An alternative answer if you worry about performance.
Load test results compared to Zafer's answer in Chrome:
See for yourself: jsfiddle
其中有以下文本框:
where you have the following textboxes: