主要是,我需要在树枝块中读取一个 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?¿?
})
有什么帮助吗?
谢谢