gpt4 book ai didi

javascript - 如何使用 JavaScript 并在 Kendo UI 模板中打印结果?

转载 作者:行者123 更新时间:2023-11-30 12:44:18 25 4
gpt4 key购买 nike

例如,我使用这些代码,效果很好,工具提示显示十进制数,如“2.152”。

  tooltip: {
visible: true,
template: "<table style='color:red'><tr><td> #= value #</td></tr></table>"
}

现在我想使用 Math.round() 函数作为工具提示的值,我像这样使用,但它不起作用。它只显示“Math.round(2.152) "字符串,但我只想显示 "2"。

  tooltip: {
visible: true,
template: "<table style='color:red'><tr><td>Math.round(#=value#)</td></tr></table>"
}

最佳答案

如果要计算 JS 代码并打印结果,则需要用分隔符将整个表达式括起来:

#= Math.round(value) #

除此之外的所有内容都被简单地视为字符串。

关于javascript - 如何使用 JavaScript 并在 Kendo UI 模板中打印结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23166630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com