“CSS Zezwolenie na TextArea React” Kod odpowiedzi

Tab JS w TextArea

document.querySelector('#textarea').addEventListener('keydown', e => {
	if ( e.key === 'Tab' && !e.shiftKey ) {
		// execCommand operations are "Cmd|Ctrl+Z"-able
      	// note: execCommand is deprecated and may not work in the future
		document.execCommand('insertText', false, "\t");
		e.preventDefault();
		return false;
	}
});
P. Tune

CSS Zezwolenie na TextArea React

<ConfigurationInput onKeyDown={e => {
   if ( e.key === 'Tab' && !e.shiftKey ) {
   document.execCommand('insertText', false, "\t");
   e.preventDefault();
   return false;
}}}/> 
Dark Dotterel

Odpowiedzi podobne do “CSS Zezwolenie na TextArea React”

Pytania podobne do “CSS Zezwolenie na TextArea React”

Więcej pokrewnych odpowiedzi na “CSS Zezwolenie na TextArea React” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu