一旦可见,我需要在Textarea中设置焦点。我使用过.focus()方法,但它不起作用。此外,我尝试将“自动对焦”属性设置为true,它适用于Chrome但不适用于IE和Firefox。
请在下面找到我正在使用的代码:
public static GetInstance(): angular.IDirective {
{
return function (scope, element, attrs) {
scope.$watch(attrs.focusMe, function (value) {
if (value === true) {
element[0].autofocus = true;
}
});
};
}
}