From http://wiki.jikexueyuan.com/project/kendo-ui-development-tutorial/ui-widgets-overview.html 也可以使用 this 关键字来获取触发事件的 UI 对象引用 用闭包的方法来触发事件的UI
<input id="autocomplete" />
<script>
function autocomplete_change(e) {
var autocomplete = this;
var value = autocomplete.value();
alert(value); // Displays the value of the AutoComplete widget
}
$("#autocomplete").kendoAutoComplete({
change: autocomplete_change
});
</script>