我在巡回赛执行的页面上有许多div .contact-box
的div。
我不想选择所有,只是第一个。
我试过了:
{
element: "#page-wrapper div.contact-box:first-of-type",
title: "Player Info",
content: "Here we have a quick snapshot of "
},
但那不起作用。
我该怎么做?
答案 0 :(得分: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
这只是选择其中一个{{1}} div,这就是我想要的。