如何从 Kendo UI Editor 中的事件中获取事件属性?
我从 KendoDemo 下载中获取了代码并对其进行了一些编辑以获取 和 的k-on-change
事件k-on-keydown
。此处描述了这些事件。
<div id="example" ng-app="KendoDemos">
<div ng-controller="MyCtrl">
<textarea kendo-editor k-ng-model="html" k-on-keydown="keydown(e)" k-on-change="onChange(e)"></textarea>
</div>
</div>
<script>
angular.module("KendoDemos", [ "kendo.directives", "ngSanitize" ])
.controller("MyCtrl", function($scope){
$scope.html = "<h1>Kendo Editor</h1>\n\n" +
"<p>Note that 'change' is triggered when the editor loses focus.\n" +
"<br /> That's when the Angular scope gets updated.</p>";
$scope.onChange = function(e){
console.log('onchange');
console.log(e);
};
$scope.keydown = function(e){
console.log('keydown');
console.log(e);
}
})
</script>
事件方法 onChange 和 keyDown 的输出没有给我e
文档中描述的属性。
我错过了什么?