我正在尝试使 h1 标签可编辑。
我的 HTML 是
<h1 id="theh1">
Hello how are you?
</h1>
而我的 JS 是
e = document.getElementById("theh1");
InlineEditor
.create( e,{
removePlugins: [ 'Heading', 'Link' ],
toolbar: [ 'bold', 'italic', 'bulletedList', 'numberedList', 'blockQuote' ]
} )
.catch( error => {
console.error( error );
} );
这是一个 JSFiddle:https ://jsfiddle.net/r66uhfee/3/
如果您查看源代码,您会看到h1
标签p
在编辑后有一个元素。如何禁用此行为?