我想弄清楚如何在我的頁面上獲取標籤,所以當我點擊它時,它跳轉到同一頁上的另一個部分。 我在我的節目頁面的鏈接:鏈接跳轉到相同頁面的下一個位置
<li class="col-xs-4 col-sm-2 nopadding menuitem" style="background:#39AFBF">
<a href="#stats" class="hvr-sweep-to-bottom">
<span>impact</span></a>
</li>
然後我下下來在同一頁上一節:
<section class="counter index section parallax-bg" id="stats" data-background="<%= image_path 'testimonial.jpg' %>">
但是當我保存,我得到一個錯誤,指出:
Couldn't find Profile with 'id'=stats
同樣是這一個問題出現了:
<li class="col-xs-4 col-sm-2 nopadding menuitem" style="background:#009CB2">
<a href="#feedback" class="hvr-sweep-to-bottom">
<span>feedback</span></a>
</li>
<section class="section index parallax-bg testimonial" id="feedback" data-background="<%= image_path 'webre.png', :style=>"background-repeat: repeat !important; background-size: inherit !important;" %>">
我認爲這將是非常有益的,如果人們留言解釋他們爲什麼拒絕投票問題。這對其他人來說可能是一個簡單的問題,但我一直在努力解決這個問題(整整8個小時)。我沒有從倒票中學到任何東西......無論是什麼原因導致某人投票,都沒有通過沒有理由或評論的投票來解決。 – Mel