gpt4 book ai didi

javascript - 将 jQuery 事件处理程序绑定(bind)到多个相似的表单

转载 作者:行者123 更新时间:2023-11-28 21:14:19 26 4
gpt4 key购买 nike

我有一个 html 页面,其中包含多个可以就地编辑的相似元素:

The Title
Some description
Count 10
[Edit]

Another Title
Another description
Count 54
[Edit]

...

如果单击编辑按钮,文本将通过 Ajax 替换为表单(页面的其余部分不会重新加载):

Title:       [The Title       ]
Description: [Some description]
Count: [10]
[Save] [Cancel]

Another Title
Another description
Count 54
[Edit]

...

用表单替换文本并提交表单的事件处理程序对于所有项目几乎都是相同的。我的第一个方法是在 html 标签中使用 ID 并将 jQuery 事件处理程序绑定(bind)到该 ID。但帽子会导致重复的代码。因此,显而易见的想法是不要为每个项目重复类似的代码。

如何区分事件处理程序中的项目,以便将正确的项目替换为表单并提交正确的表单?

最佳答案

$('.classYouPutOnAllEditButtons').click(function () {
var that = $(this); // this variable now holds a reference to the Edit button that was clicked, you can use a traversal method (e.g. closest()) to find the form it was in
// do your other stuff
});

关于javascript - 将 jQuery 事件处理程序绑定(bind)到多个相似的表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7996757/

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