gpt4 book ai didi

javascript - 无法将我的函数应用于多个文本框

转载 作者:行者123 更新时间:2023-11-30 07:03:09 24 4
gpt4 key购买 nike

所以我是 jquery 的新手,我想弄清楚如何将我的函数应用于多个文本框,我最终需要将它连接到另一个与我拥有的函数类似的函数,但我就是想不通如何将它们连接起来,使它们不允许某些输入。非常感谢任何关于此的建议。

<html>
<head>


<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">

$(document).ready(function(){


$("#textBox").keypress(function (e) //the function will check the textbox
{


if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57))
{
return false;
}
});





});
</script>

</script>

</head>
<body>

<font face='courier'>
Numbers Only : <input type="text" id="textBox" /><br/>
Letters Only : <input type="text" id="textBox2" />

</body>
</html>

提前致谢

最佳答案

试试看

$("#textBox,#textBox2").keypress();

提供的示例仅选择一个文本区域。您正在使用仅使用一次的特定 ID。

http://api.jquery.com/multiple-selector/

关于javascript - 无法将我的函数应用于多个文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7162401/

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