Kendo UI 模板中的转义百分比“%”
Escape percentage "%" in Kendo UI template
我正试图在我的 Kendo UI 模板中转义百分比“%”,谁能帮忙。
我的代码:
$donePercentageInput.kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
min: 0,
max: 100,
smallStep: 1,
largeStep: 5,
tooltip: {
template: kendo.template("#= value \\% #")
}
});
已经试过了//%
////%
\%
\\%
没有任何效果...:(
这是一个简单的修复方法。这只是您放置 %
符号的情况。
如果您将模板更改为:
tooltip: {
template: kendo.template("#= value #%")
}
那么这对你有用。
这是一个演示:
http://dojo.telerik.com/iGoLOc
拖动顶部滑块,您将看到工具提示。
通过将 %
放在 #= #
中,您要求基诺计算出添加了这个奇怪符号的值,它不喜欢它。
我正试图在我的 Kendo UI 模板中转义百分比“%”,谁能帮忙。
$donePercentageInput.kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
min: 0,
max: 100,
smallStep: 1,
largeStep: 5,
tooltip: {
template: kendo.template("#= value \\% #")
}
});
已经试过了//%
////%
\%
\\%
没有任何效果...:(
这是一个简单的修复方法。这只是您放置 %
符号的情况。
如果您将模板更改为:
tooltip: {
template: kendo.template("#= value #%")
}
那么这对你有用。
这是一个演示:
http://dojo.telerik.com/iGoLOc
拖动顶部滑块,您将看到工具提示。
通过将 %
放在 #= #
中,您要求基诺计算出添加了这个奇怪符号的值,它不喜欢它。