0
主要是,我需要讀取一個枝條塊內的jQuery變量,但我不知道如何。 我已經嘗試過不同的方法沒有成功閱讀jquery變量裏面的樹枝塊
拿這段代碼作爲我想要做的一個例子。
$('table tbody tr').each(function(index) {
{% set i = index %} <-- does NOT work
$('#test_form_' + index + '_name').style.color = "blue" <-- That works
$('#test_form_' + index + '_name option[value =' +
{{ names[i].id is defined ? names[i].id : '' }}
+ ']').attr("selected","selected"); <-- Need of JQuery index variable?¿?
})
任何幫助?
感謝