= link_to content_tag(:i, nil, class: 'fa fa-plus-circle fa-2x pull-right'), my_path(format: :js), remote: true
上面是我的代码,我想在jQuery中选择此链接来添加一些效果。我该如何选择它?
答案 0 :(得分:1)
您可以使用以下任何类:fa fa-plus-circle fa-2x pull-right
,
例如:$('.fa-plus-circle')
或$('.pull-right')
。
选择您不希望受其脚本影响的类,该类不会在其他元素中重复。
您还可以定义上下文:$('.fa-plus-circle', '.parent-class-name')
,这是其中一个链接父元素的类名,以便更具体地选择正确的链接。
答案 1 :(得分:0)
$('a.fa-plus-circle')
将选择使用fa-plus-circle
类的所有链接。
如果您需要更具体的内容来选择该链接且仅 该链接,则您需要为该链接添加更具体的属性,例如id
。