Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
jquery.tmpl不在IE中工作_Jquery_Jquery Templates - Fatal编程技术网

jquery.tmpl不在IE中工作

jquery.tmpl不在IE中工作,jquery,jquery-templates,Jquery,Jquery Templates,带有$()的标记可以很好地工作,但是没有$的值在IE中不起作用 <td>${audienceType}</td> {{if audienceTypeStatus ==null || audienceTypeStatus == 'Declined'}} <td class="learnButton"></td> {{else audienceTypeStatus == 'Approved'}}

带有$()的标记可以很好地工作,但是没有$的值在IE中不起作用

 <td>${audienceType}</td>
    {{if audienceTypeStatus ==null || audienceTypeStatus == 'Declined'}}
            <td class="learnButton"></td>       
    {{else  audienceTypeStatus == 'Approved'}}
            <td class="greenColorText">${audienceTypeStatus}</td>
    {{/if}}
${audenceType}
{{如果audienceTypeStatus==null | | audienceTypeStatus=='Decedden'}
{{else audienceTypeStatus=='Approved'}
${audienceTypeStatus}
{{/if}

例如,我获取了audienceType的值,但在我们签入if语句时,我没有检索audienceTypeStatus的值。

您得到了什么错误?我获取的audienceTypeStatus在IE中未定义,它在所有其他浏览器中都能工作。它被错误地或错误地解析了。对不起,我听不懂你说什么@snakeyes除了javascript之外,你使用了什么语言?PHP、ASP.NET等