我想在页面加载时将 TinyMCE 编辑器设置为项目符号格式。我的意思是当用户开始输入文本内容时,它应该被格式化为项目符号。我知道用户可以先输入然后选择并将其格式化为项目符号,但我需要这个功能,就像页面加载时一样。这可能吗? 下面是我的代码。
<h1>The textarea element</h1>
<form action="/action_page.php">
<label for="w3review">Some text area</label>
<textarea id="w3review" name="w3review" rows="4" cols="50">
We need the bullet formating by default
</textarea>
<input type="submit" value="Submit">
</form>
<script src='https://cloud.tinymce.com/stable/tinymce.min.js'></script>
<script>
tinymce.init({
selector: '#w3review',
plugins: 'lists',
toolbar: 'bullist'
});
tinymce.activeEditor.selection.setContent('<<ul><li>We need the bullet formating by default</li></ul>');
</script>
我需要的是这个截图,当页面加载时 needed functionality