ai didi

jquery - 如何将多个 .change 触发器组合在一起?

转载 作者:行者123 更新时间:2023-12-01 08:18:49 24 4
gpt4 key购买 nike

我有以下功能:

$("input[id^='Position_']").change(function () { update('Position'); })
$("input[id^='Status_']").change(function () { update('Status'); })
$("input[id^='Location_']").change(function () { update('Location'); })

是否有某种方法可以将这些函数合并为一个,并根据更改的字段值自动设置更新函数中传递的参数?

最佳答案

$("input[id^='Position_'], input[id^='Status_'], input[id^='Position_']").change(function(e) {
var type = $(this).attr('id').split('_')[0];
update(type);
});

关于jquery - 如何将多个 .change 触发器组合在一起?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8665467/

24 4 0
文章推荐: jquery - 一个 Jquery 对话框可以打开另一个 Jquery 对话框吗?
文章推荐: php - Json 编码从 Ajax 中给我 null,但从正常的 php 字符串中没有给我 null
文章推荐: c# - 使用 $.post 或 $.get 返回可下载的 zip 文件
文章推荐: jquery - 为什么更改链接 ID 后执行相同的功能?
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
全站热门文章
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com