我有一个包含多个相似元素的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事件处理程序绑定到此ID。但是帽子会导致重复的代码。所以显而易见的想法是不要为每个项重复类似的代码。
如何区分事件处理程序中的项目,以便用表单替换正确的项目并提交正确的表单?
答案 0 :(得分:3)
$('.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
});
答案 1 :(得分:0)
在事件处理程序中,this
指的是被点击的特定元素。
$(yourSelector).bind('event', function () {
// in here, `this` will be the Edit button.
});