gpt4 book ai didi

jquery - live() 不适用于更改功能

转载 作者:行者123 更新时间:2023-12-01 00:37:47 27 4
gpt4 key购买 nike

嗨 friend ,下面是我的代码

脚本

$(document).ready(function(e) {
$('.text').live('change',function(){
var a = $(this).val();
alert(a);
})
});

HTML

<input name="" type="text" class="text"/>

我是 jQuery 新手,我想在更改时获取输入的值值一次又一次动态变化

请大家帮帮我

最佳答案

As of jQuery 1.7, the .live() method is deprecated.

您应该使用on()

$(document).ready(function(e) {
$('.text').on('change',function(){
var a = $(this).val();
alert(a);
});
});

关于jquery - live() 不适用于更改功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18395786/

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