问题是代码很大,我不能在这里复制/粘贴所有内容。
以下是更多信息: - 在页面中,我有一个模板,javascript 使用该模板来填充包含所有内容的 div。我有大约 20 个结果。模板开始是这样的:
<script id="itemtemplate" type="geowacht/template">
<div class="results-name">
<h4 class="show-more-name itemaponaam" data-target="#result"></h4>
<div class="d-block" id="result">
<div class="itemaddress"></div>
<div class="itemgeodesc"></div>
<div class="itemphone"></div>
- 这些页面调用一个查询 API 并返回 20 个结果的脚本。这些结果被解析并使用模板添加到页面中。这是代码的开头:
apiconfig.default_populateItemNode = function(node, apotheekData, wachtPeriodeData, authenticationData) {
$(node).find('.itemaponaam')[0].setAttribute('data-target', '#result-' + itemPos);
$(node).find('.buttons')[0].setAttribute('id', 'result-' + itemPos + '-buttons');
$(node).find('.buttons')[0].setAttribute('data-apbnb', apotheekData.pharmacy.id);