私が欲しいものの例があります:
http://jsfiddle.net/challenger/m4BZt/
私はそのようなテンプレートを持っています(私はBackbone
ライブラリを使用しています):
<div class="four columns productView">
<dl class="tabs">
<dd class="active"><a href="#<%= Id %>-tab1">Purchase</a></dd>
<dd class=""><a href="#<%= Id %>-tab2">Specification</a></dd>
</dl>
<ul class="tabs-content">
<li class="active" id="<%= Id %>-tab1">
<img src="http://placehold.it/400x300&text=[img]">
<h4><%= Title %></h4>
<p>
<a href="#" class="blue small nice button radius">Add to Cart »</a>
</p>
</li>
<li id="<%= Id %>-tab2">
<h4><%= Title %></h4>
<p><%= Description %></p>
<p>
<a href="#" class="blue small nice button radius">Add to Cart »</a>
</p>
</li>
</ul>
</div>
しかし、これは壊れます。どういうわけかそれにdoesn't show me second tab content
もかかわらずchanges tab visually
、ハッシュ記号とモデルId with -tab[1|2] postfix
を に追加しurl bar
ます。
多分私は何かを逃しましたか?それ、どうやったら出来るの?ありがとう!