我使用 textAngular,它在页面加载时处于非活动状态,并且仅在用户单击输入时才变为活动状态。这意味着它的所有按钮,例如“插入视频”将被禁用,直到文本输入不会被聚焦。
有没有办法让 text-angular 默认启用或始终启用?
我使用 textAngular,它在页面加载时处于非活动状态,并且仅在用户单击输入时才变为活动状态。这意味着它的所有按钮,例如“插入视频”将被禁用,直到文本输入不会被聚焦。
有没有办法让 text-angular 默认启用或始终启用?
document.getElementById("<id of the element you want to focus on>").focus();
如果这不起作用,请尝试应用超时:
setTimeout(function() { document.getElementById("<id of the element you want to focus on>").focus(); }, 2000);
此外,如果您像我们大多数人一样使用 jQuery,请尝试将 .focus() 与我们的经典行结合使用:
$(document).ready(function(){
document.getElementById("<id of the element you want to focus on>").focus();
})