当前位置: 首页 > 文档资料 > tinyMCE 帮助文档 >

Tab Focus plugin

优质
小牛编辑
126浏览
2023-12-01

This plugin adds the possibility to tab in/out of TinyMCE.

Type: String

Example
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  plugins: "tabfocus"
});

Options

This setting affects the execution of the tabfocus plugin. This setting can be used to change the focus behavior of the editor when the tab key has been pressed inside the editable area.

tabfocus_elements

This option enables you to specify an element ID to focus when the user presses the tab key inside the editor. You can also use the special ":prev" and ":next" values. It will then place the focus on either the previous or next input element placed before/after the TinyMCE instance in the DOM.

Type: String

Example
// Move focus to specific element
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  tabfocus_elements: "somebutton"
});
// Move focus to next element in DOM
tinymce.init({
  selector: "textarea",  // change this value according to your HTML
  tabfocus_elements: ":prev,:next"
});