Knockout.js 1.3 和 jquery templates 1.0pre 问题在 IE8 中
我在使用 IE8 以及最新版本(测试版)knockout.js 和 jquery 模板时遇到了重大问题。我不断收到下面的错误。如果我删除 TrialogueRun 中的
那么它就不会出错。它发生在 jquery.tmpl.js 中的 buildTmplFn(markup) 函数中。SCRIPT1028: Expected identifier, string or number
jquery.tmpl.js, line 317 character 9
<script id="trialogueRun" type="text/html">
<div data-bind="attr: { class: $data.AgentName }"></div>
</script>
I am having a major issue with IE8 and the newest versions (beta) of knockout.js and jquery templates. I keep getting the error below. If I remove the <div>
in trialogueRun then it doesn't error. It happens at the buildTmplFn(markup) function in jquery.tmpl.js.
SCRIPT1028: Expected identifier, string or number
jquery.tmpl.js, line 317 character 9
<script id="trialogueRun" type="text/html">
<div data-bind="attr: { class: $data.AgentName }"></div>
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让它可以与 IE8 一起使用。我早该知道 IE 对“class”这个词会有问题。
Got it to work with IE8. I should have known IE would have problems with the word 'class'.