在 angular 2 中防止自动聚焦 tinymce
Prevent auto focus on tinymce in angular 2
任何人都可以帮助我如何防止 angular 2.
中的自动对焦
我不知道如何在 angular 2 中做到这一点,但我可以做到 jquery:
$('form *:input[type!=hidden]:first').focus();
在您的应用模块中,将模块替换为下面的模块
TinymceModule.withConfig({'auto_focus':假,})
最近 angular 遇到上述问题时,要解决此问题,
我在
任何人都可以帮助我如何防止 angular 2.
中的自动对焦我不知道如何在 angular 2 中做到这一点,但我可以做到 jquery:
$('form *:input[type!=hidden]:first').focus();
在您的应用模块中,将模块替换为下面的模块
TinymceModule.withConfig({'auto_focus':假,})
最近 angular 遇到上述问题时,要解决此问题,
我在