我的 if(str == seltext) 一直在返回 true。
这是我的代码:-
[% FOREACH cll = classifications %]
var str = "[% cll.object.name FILTER js %]";
var seltext = classSel.options[classInd].text;
alert(str+" "+seltext);
if(str == seltext)
{
alert("classfound=[% cll %]"); /// THIS ALWAYS GETS FIRED
}
[% END %]
我不明白为什么会这样,我认为这可能是因为 [% 只保存了变量 str 一次,但我的警报不会改变。