我的模板中有以下下拉列表 -SELECT
元素 - 构造:ZPT
<select id="record_selector">
<option tal:repeat="record view/records" tal:attributes="value record/id">
<span tal:replace="record/name"></span>
</option>
</select>
如何OPTION
从相应的属性中选择等于 1 的值view
(例如,OPTION
tag value
== view/currentRecordId
then make it selected
)。