jQuery - 将操作绑定到父表单,确定哪个子表单触发了绑定事件
我有一个具有多个输入字段的表单。我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用事件
target
:这是一个 工作示例。
Use the event
target
:Here's a working example.
http://api.jquery.com/event.target/ --
事件.target
应该是你想要的。http://api.jquery.com/event.target/ --
event.target
should be what you want.