这是我当前的标记:
.image_container{style: 'background-image: url(' + item['image'] + ')'}
[...]
.product_images_link{data: {id: item["objectId"]}}
%form.product_info{action: "post", id: "item_#{item['objectId']}"}
%h3.title= item['name']
%a.remove
我有一个 CoffeeScript 函数,可以在 a.remove 上切换类“.add”。我想单击此链接还将“未选择”类切换为“.image_container”。
我当前的功能如下所示:
toggleProduct: (evt) ->
button = $(evt.currentTarget)
button.toggleClass 'add'
$(evt.currentTarget).find('.image_container').toggleClass 'unselected'
如何在 .image_container 上查找和切换类?