虽然我想出了如何从数组中获取所有元素,但我一直在尝试获取属于第一个元素的元素。我正在使用 Backbone.js 并尝试编辑我的一个模板。我得到的曲目信息来自一个 JSON 文件。我可以在我的 HTML 文件中执行此操作,还是必须编辑我的 .js 文件?
HTML:
<script type="text/template" id="lesson-template">
<span class="lesson-title"><%= title %></span>
<select class="sel">
<% _.each(tracks, function(track) { %> //this lets me loop through each of them
<option value = "<%= track.text %>" ><%= track.title %></option>
<% }); %>
</select>
//Now I want to figure out a way to just get the track.text of the first track here and put it in tracktext!
<p id="tracktext">Hello World!</p>
</script>