gpt4 book ai didi

javascript - 未捕获的类型错误 : Cannot read property 'value' of null

转载 作者:行者123 更新时间:2023-11-28 19:21:32 26 4
gpt4 key购买 nike

这是我的 PHP 代码:

echo '<td>';
$r= $item['Rate'];
echo '<input id="ratetb" onkeyup="clean(ratetb)" onkeydown="clean(ratetb)" name="ratetb" autocomplete="off" style="text-align:center" type="text" value="'.$r.'" >';
echo '</td>';

这是我的 JavaScript 函数:

function clean(e) {
var textfield=document.getElementById(e);

var replc=/[^0-9 .]/gi;

textfield.value=textfield.value.replace(replc,"");
}

执行此操作时出现错误

Uncaught TypeError: Cannot read property 'value' of null

最佳答案

请检查调用函数并确保有一个带有 id e 的项目,因为错误表明文本字段为空,因此不能为空对象的值。

编辑:更改问题后,它必须是 onkeyup="clean('ratetb')"

关于javascript - 未捕获的类型错误 : Cannot read property 'value' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28773467/

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