gpt4 book ai didi

jQuery ~ 如何检查输入值中的文本

转载 作者:行者123 更新时间:2023-12-01 03:51:20 25 4
gpt4 key购买 nike

当用户输入文本a、b、c时就可以了。

如果用户输入另一个文本,如 0、9、z、x...alert('can't type this word');

如何轻松制作?

最佳答案

做这样的事情:

$(document).ready(function() {  $("#yourInputId").keyup(function() {     if($(this).val() == "z") {        alert("You cant type this");     }  });});

关于jQuery ~ 如何检查输入值中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8278174/

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