我想获取 div 的 id 并将该值设置在 jquery 变量名的末尾。例如,如果我单击 id 为“2”的 div,我希望该函数创建一个名为“var doThis2”的变量,而不仅仅是“var doThis”
这是我现在的代码:
var clickedComment = false;
$('.comment').click(function (event) {
var id = event.target.id;
// I am wanting ^this id value to be added to the end on clickedComment
if (clickedComment == true) {
$("." + id).animate({ left: '+=85.2%' }, 250);
clickedComment = false;
} else {
$("." + id).animate({ left: '-=85.2%' }, 250);
clickedComment = true;
}
});
有什么帮助甚至更有效的方法来完成这项工作吗?