我想在没有任何服务器请求的情况下在每个单元格的工具提示中添加 html 表。Kendo 通过 api 调用提供了此功能。
$(document).ready(function() {
var tooltip = $("#target").kendoTooltip({
iframe: false,
content: {
url: "*http://demos.telerik.com/kendo-ui/content/web/tooltip/ajax/ajaxContent3.html*"
},
width: 220,
height: 280
}).data("kendoTooltip");
});
有什么方法可以在不提出任何请求的情况下添加 html?