0

我在执行我的 Tour 的页面上有很多 div 类.contact-box

我不想全选,只选第一个。

我试过这个:

  {
    element: "#page-wrapper div.contact-box:first-of-type",
    title: "Player Info",
    content: "Here we have a quick snapshot of "
  },

但这没有用。

我要怎么做?

4

1 回答 1

0

事实证明,我所要做的只是在我的视图中使用我的实例变量。

我在我profiles#index.html.erb<script type=text/javascript>标签内实现了这一点,所以这就是我所做的:

  {
    element: '#page-wrapper div.contact-box.profile-<%= @profiles.first.id %>',
    title: "Player Info",
    content: "Blah blah blah"
  },

那只是选择contact-box了我想要的那些div之一。

于 2016-12-05T00:22:46.177 回答