YUI 3 html 模板
有没有办法在 YUI 中创建 HTML 标记,例如:
<div id={DivId}>
<p class={pClass}>
<span class={spanClass}> {Content} </span>
</p>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我做了同样的事情......这是我使用的。
在 Y.one 标记中,我使用
resultFormatter : resultFormat
来调用该函数。I did the same thing.... Here is what I used.
In the Y.one tag I used
resultFormatter : resultFormat
to call the function.如果我正确理解你的问题,
Y.substitute
可能值得一看。如果您还没有看过,我建议您观看 YUI Theater 上的“YUI 3 Sugar”视频。跳至 22:27 了解有关
Y.substitute
的更多信息。If I understand your question correctly,
Y.substitute
might be worth looking at.If you haven't seen it, I'd recommend watching through the YUI 3 Sugar video at the YUI theater. Jump to 22:27 for more on
Y.substitute
.