如何将焦点设置为ember中动态生成的输入字段(文本框)

时间:2018-03-22 11:43:08

标签: jquery ember.js ember-cli

我有两个动态生成的文本框,下面是文本框的html

enter image description here

two text boxes

如何关注任何1个文本框?

我尝试了下面的代码

    $('.answer_1').focus();

但是这个剂量似乎有效,有没有其他方法我可以通过编程方式将焦点设置到文本框?

1 个答案:

答案 0 :(得分:2)

你需要调用$(' .answer_1')。focus();将函数附加到DOM后。虽然说didRender是一个回调方法,它在组件被渲染后调用。

didRender(){
  $('.answer_1').focus();
}