jQuery tmpl:如何渲染 Html?
好的,我遇到了 jQuery、tmpl-plugin 和这个的情况:
${$value.Text}
这很好,工作正常,但正如我刚刚通过 文档:
使用 {{html fieldNameOrExpression}} 相当于使用 ${fieldNameOrExpression},除了 它将未编码的文本渲染到 HTML DOM,而 ${} 编码值 默认情况下。
好吧好吧。但我无法让 {{html}}
标签与我的 ${$value.Text}
一起使用。
我尝试过类似 {{html ${$value.Text}}
或 {html ${$value.Text}}
但它不起作用。
Okay, I'm in a sitiuation with jQuery, the tmpl-plugin and this:
${$value.Text}
This is okay and works fine but as I just found out via the documentation:
Using {{html fieldNameOrExpression}}
is equivalent to using
${fieldNameOrExpression}, except that
it renders unencoded text into the
HTML DOM, whereas ${} encodes values
by default.
Okay fine. But I can't get the {{html}}
tag to work with my ${$value.Text}
.
I tried things like {{html ${$value.Text}}
or {html ${$value.Text}}
but it just doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确的语法是:
The correct syntax is:
对我有用的是:
What worked for me was: