gpt4 book ai didi

javascript - 输入值未定义

转载 作者:行者123 更新时间:2023-12-01 02:28:17 25 4
gpt4 key购买 nike

我需要验证自己的一个字段;合法的只是数字。

这是简单的 HTML:

<div class="form-group">
<label for="superficie">Superficie</label>
<input type="text" class="form-control required-field" data-type="number" name="superficie" />
</div>

这是 Jquery:

$('.current .required-field').each(function(index) {
$(this).keyup(function() {
var input_type = $(this).data('type');
validate($(this), input_type);
});
});

function validate(input, input_type) {
switch(input_type) {
case 'number':
if (input.value != input.value.replace(/[^0-9\.]/g, '')) {
input.value = input.value.replace(/[^0-9\.]/g, '');
}
break;
}
}

控制台返回错误:

input.value is undefined.

最佳答案

input 变量包含一个没有 value 属性的 jQuery 对象。要访问该值,您需要使用 val() 方法,或者您可以向您的函数提供 native HTMLElement:

validate(this, input_type);

最后,值得注意的是,您可以简化代码,因为它全部通过 this 挂起对元素的引用:

$('.current .required-field').keyup(validate);

function validate() {
var $el = $(this);
switch ($el.data('type')) {
case 'number':
$el.val(function(i, v) {
return v.replace(/[^0-9\.]/g, '');
});
break;
}
}

关于javascript - 输入值未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33257059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com