3
<script>
function compare(profile_id)
{
{% ifequal '{{profile.id}}' %}
selected_sub='selected';
{% endifequal %}
}
</script>
如何比較{{profile.id}}
和JavaScript變量profile_id
比較
<script>
function compare(profile_id)
{
{% ifequal '{{profile.id}}' %}
selected_sub='selected';
{% endifequal %}
}
</script>
如何比較{{profile.id}}
和JavaScript變量profile_id
比較
function compare(profile_id){
if (profile_id == {{ profilegroup.subject.id }})
\\ do something
}
請記住,該腳本必須在模板中,而不是在一些服靜態的腳本文件(文件必須充滿價值,工作)。還請記住,您只需製作模板化腳本,該腳本將在生成響應時填充,並且只有一個值(用於傳遞給模板的配置文件組)。