目标:将事件处理程序附加到嵌套在 mustache 模板/脚本中的 contenteditable div。
问题:我有一个想要编辑的小胡子 js 模板。这个想法是,在 keyup 上它应该触发一个事件(用于稍后更新相同的数据服务器端)。
该块是可编辑的,但 contenteditable 事件不会在脚本标签内触发。
我尝试了更一般的提示,例如: 检测父项是 contenteditable div 的 contenteditable 子项的 keyup 事件 和 嵌套内容可编辑(jQuery)上的 Keypress 事件, 但没有一个处理模板场景。
HTML
<script id="post" type="text/template">
<div class="editable" contenteditable="true">
<h2>{{bio}}</h2>
<p>{{summary}}</p>
</div>
<span class="child" contenteditable="true">static inside template.</span>
</script>
jQuery
$('.editable').on('keyup', function() {
alert('editable changed')
});
$('.child').on('click', function() {
alert('static child changed')
});