我的smarty文件中有兩個選項卡。在tab1中,我有一個包含城市列表的下拉菜單。我有基於城市的模板列表,其中包含有關城市的詳細信息。在第二個選項卡中,我應該根據下拉選擇顯示相關的城市模板。使用Javascript動態更改smarty包含文件
例如: 下拉:
<select name='city' id='city' class="medium" style="float:left" onchange="setCityTpl(this);">
<option value=''></option>
{html_options options=$city_filter selected=$city.name}
</select>
如果我在下拉菜單中選擇城市1
我應該在智者設置的第三方物流include文件名作爲city1.tpl
<div id="tab2" class="tab-content" style="display: none; visibility: hidden; padding-top:0px">
{include file=city1.tpl}
</div>
如果我在下拉菜單中選擇City 2
我應該設置th E在smarty的TPL名稱包括文件作爲city2.tpl
<div id="tab2" class="tab-content" style="display: none; visibility: hidden; padding-top:0px">
{include file=city2.tpl}
</div>
謝謝你的回答我會選擇第二個選項。再一次感謝你 – Prabu