1-6ren">
gpt4 book ai didi

javascript - 仅当输入达到 X 个字符时才向 PHP 文件发送请求

转载 作者:行者123 更新时间:2023-11-30 05:48:04 25 4
gpt4 key购买 nike

我正在使用此 java 脚本代码从我的 sql 中获取数据。我只想在输入字段有 15 个字符时向 php 文件发送请求。所以我使用了这个 onkeyup="if(this.value.length>14)" 但它没有用。有人可以修改我的 java 脚本代码吗..拜托

最佳答案

将您的 html 更改为:

 <input type="text" name="name" maxlength="15" id="name" onkeyup="check_length(this)"  />

并将此函数添加到您的 javascript 中:

function check_length(thisObject){
if(thisObject.value.length>14){ajaxFunction(thisObject.value)}
}

编辑:

This happens when you define the functions in the head part and call them, when the document is not yet initialized. Move the script part, where the initialization happens and try it out.

我给你放了示例代码(将它保存在一个空白的 html 文件中并进行测试):

<input type="text" name="name" maxlength="15" id="name" onkeyup="check_length(this)"  />
<script>
function check_length(thisObject){
if(thisObject.value.length>14){ajaxFunction(thisObject.value)}
}
function ajaxFunction(thisObjectValue)
{
console.log(thisObjectValue);
/// Do things ....
}
</script>

关于javascript - 仅当输入达到 X 个字符时才向 PHP 文件发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16624878/

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