1

我有一个<div>基于 ACE 的编辑器。

<label for="editorId">Content</label><div id="editorId></div>

是否可以在不添加 onclick 事件的情况下<label>使用属性?for

4

1 回答 1

1

是的,您需要将 id 分配给 ace 使用的隐藏文本区域

editor.container.id = ""; // remove id from container div
editor.textInput.getElement().id = "editorId"; // assign id to the textarea 
于 2014-11-11T06:54:25.980 回答