gpt4 book ai didi

javascript - Textbox 类 Onchange 事件监听器不适用于多个类

转载 作者:行者123 更新时间:2023-12-03 05:35:58 25 4
gpt4 key购买 nike

<input class="item-quantities valid" data-bomid="1939" data-rid="2054" id="AddedItemIDs_1939_" name="AddedItemIDs[1939]" onkeypress="return isNumberKey(event)" type="text" value="7" aria-invalid="false">

无法让它工作。我已经尝试过...

$('.item-quantities, .valid').change(function () {
alert("we are here");
});

或者...

$('.item-quantities.valid').change(function () {
alert("we are here");
});

或者...

$('.item-quantities').change(function () {
alert("we are here");
});

...以及其他一些变体。

似乎无法弄清楚如何触发此事件。我一直在尝试 $('.item-quantities, .valid') 的各种变体,但无济于事。正确的做法是什么?

最佳答案

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
$( document ).ready(function() {
$(".item-quantities").change(function () {
alert("we are here");
});
});

</script>
</head>
<body>

<input id="items" class="item-quantities valid" type="text">
</body>
<html>

这对类很有用

关于javascript - Textbox 类 Onchange 事件监听器不适用于多个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40733589/

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