我有一个我想要的例子:
http://jsfiddle.net/challenge/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.
也许我错过了什么?我怎么做?谢谢!