Set focus on div contenteditable element

后端 未结 9 2078
深忆病人
深忆病人 2020-11-29 01:51

I have a

where I define by a WYSIWYG some elements. For example

,

, etc. I would l

相关标签:
9条回答
  • 2020-11-29 02:08

    A lot of the time if you can't call .focus() on an element, it's because the tabIndex is -1, which means the tab key can't focus on it when you're pressing tab to navigate.

    Changing your tabIndex to >= 0 will let you focus on the elements. If you need to do it dynamically, you can just add a tabindex >= 0 to your element in the event listener.

    0 讨论(0)
  • 2020-11-29 02:08

    To build further on @Surmon answer. If you are looking to auto focus right after your last letter/number in the text instead of the last insertion location (last insertion location will move the cursor to a new line if the child nodes are enclosed in block type tags and not plain text) then apply this small modification:

    r.setStart(p.lastChild, 1);
    r.setEnd(p.lastChild, 1);
    

    This is an extended function that checks if the editor/element has any child nodes and depending on the situation sets the cursor accordingly at the end:

    let p = document.getElementById('contenteditablediv');
    p.focus();  // alternatively use setTimeout(() => { p.focus(); }, 0);
    // this is enough to focus an empty element (at least in Chrome)
    
    if (p.hasChildNodes()) {  // if the element is not empty
      let s = window.getSelection();
      let r = document.createRange();
      let e = p.childElementCount > 0 ? p.lastChild : p;  
      r.setStart(e, 1); 
      r.setEnd(e, 1);    
      s.removeAllRanges();
      s.addRange(r);
    } 
    
    0 讨论(0)
  • 2020-11-29 02:11

    I noticed that jQuery focus() did not work for my contenteditable DIV with width and height of 0. I replaced it with .get(0).focus() - the native javascript focus method - and it works.

    0 讨论(0)
  • 2020-11-29 02:11

    Bind a "click" event handler to all elements within the contenteditable div, and change the class/style on click (i.e. add class "focused" to the element);

    You can identify, to the user, which element has focus by adding style such as a colorful border or an inner box-shadow. Then when you want to access the focused element in your jQuery script, just do something like this:

    var focused = $('.focused');

    0 讨论(0)
  • 2020-11-29 02:14

    One more thing to check: If you have the browser's console window open, make sure the console does not have focus when you load the page, or else the element on the page won't get focus as expected.

    This also seems to imply that you can't run document.querySelector('#your-elem').focus() in the console (tried with Chrome, Safari and Firefox on a Mac, Aug 2020).

    0 讨论(0)
  • 2020-11-29 02:18

    In case someone, who uses MediumEditor that manages contenteditable element, stumbles upon this issue, the following has worked for me:

    editor.selectElement(editorDOMNode);
    
    1. editor is an instance of MediumEditor.
    2. editorDOMNode is a reference to the actual contenteditable DOM node.
    3. It is also possible to focus on a specific child node within the editor as follows:

      editor.selectElement(editorDOMNode.childNodes[0]);
      
    0 讨论(0)
提交回复
热议问题