如何将数据嵌入到 jQuery 模板属性中

发布于 2024-12-03 21:26:27 字数 625 浏览 0 评论 0原文

我有以下 jQuery-tmpl 模板:

<script id="month-template" type="text/x-jquery-tmpl">
    <div style="width:${width};">
        <div>Hello</div>
    </div>
</script>

它由以下脚本使用:

$("#month-template").tmpl({"width":30}).appendTo($("#containerId"));

我希望看到此输出:

<div style="width:30;">
    <div>Hello</div>
</div>

但我得到这个:

<div style="">
    <div>Hello</div>
</div>

是否有一些特殊的方法可以在模板中嵌入属性值? 我是 tmpl 新手 - 也许我错过了一些明显的东西。

I have the following jQuery-tmpl template:

<script id="month-template" type="text/x-jquery-tmpl">
    <div style="width:${width};">
        <div>Hello</div>
    </div>
</script>

It is used by the following script:

$("#month-template").tmpl({"width":30}).appendTo($("#containerId"));

I expect to see this output:

<div style="width:30;">
    <div>Hello</div>
</div>

But I get this:

<div style="">
    <div>Hello</div>
</div>

Is there some special way to embed attribute values in a template?
I am new to tmpl - maybe I have missed something obvious.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔女人霸气范 2024-12-10 21:26:27

使用 30px 而不是 30

使用 .css() 时,jQuery 会自动将整数转换为正确的 CSS 单位,但由于它是一个模板(不是特定于 CSS 的),因此您需要自己指定单位。

Use 30px instead of 30.

jQuery automatically converts integers to the correct CSS units when using .css() but since it's a template (not CSS-specific) you need to specify the units yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文