我在我的网站上实现了剑道编辑器。现在我想在 kendo 编辑器中动态生成的 DOM 元素上添加事件(例如,图像上的单击事件)。那我该怎么做??
基本上我想通过 jquery-ui 在 kendo-editor 中使图像可调整大小和可拖动
我在我的网站上实现了剑道编辑器。现在我想在 kendo 编辑器中动态生成的 DOM 元素上添加事件(例如,图像上的单击事件)。那我该怎么做??
基本上我想通过 jquery-ui 在 kendo-editor 中使图像可调整大小和可拖动
只有当您的编辑器是从 contentEditable 元素初始化时,您才能这样做:
<div id="editor" contentEditable>
Logo
<img src="http://www.google.bg/images/srpr/logo4w.png" width=100>
</div>
<script>
$("#editor").kendoEditor();
$("#editor img").draggable({
containment: "parent"
});
</script>
这是一个现场演示:http: //jsbin.com/ELuhObe/1/edit