我想收到输入type
的值。
文档:KendoTooltip
$("input").kendoTooltip({
content:
function () {
return '<div>' + this.attr("type") + '</div>';
}
});
但我无法使用任何方式使用this.
。
答案 0 :(得分:0)
这很简单:e.target.attr("value")
content:
function (e) {
var text = e.target.attr("value");
return '<div>' + text + '</div>';
}