jQuery - 将操作绑定到父表单,确定哪个子表单触发了绑定事件

发布于 2024-12-03 12:31:00 字数 392 浏览 0 评论 0原文

我有一个具有多个输入字段的表单。我将 bind() 应用于此表单,如下所示:

$("#form-id").bind('keyup change', function(e) {
   //Run some other code
   alert('here');
});

我想确定触发绑定事件的表单字段的 ID。我尝试使用在函数上发送的 Event 对象,但是信息似乎不存在那里。例如,e.latedTarget 为 null。

是否可以确定表单的哪个子元素触发了绑定事件?

I have a form that has multiple input fields. I'm applying a bind() to this form as so:

$("#form-id").bind('keyup change', function(e) {
   //Run some other code
   alert('here');
});

I would like to determine the ID of which form field triggered the bind event to fire. I've tried working with the Event object sent on the function, however the information doesn't seem to reside there. For example, e.relatedTarget is null.

Is is possible to determine what child element of the form triggered the bind event to be triggered?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

∝单色的世界 2024-12-10 12:31:00

使用事件 target

$("#form-id").bind('keyup change', function(e) {
    var targetId = e.target.id;
});

这是一个 工作示例

Use the event target:

$("#form-id").bind('keyup change', function(e) {
    var targetId = e.target.id;
});

Here's a working example.

晒暮凉 2024-12-10 12:31:00

http://api.jquery.com/event.target/ -- 事件.target 应该是你想要的。

http://api.jquery.com/event.target/ -- event.target should be what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文