流星显微镜激活光标

时间:2015-05-14 00:05:52

标签: javascript html meteor

在名为Microscope的Discover Meteor Book项目中。当用户点击“提交帖子”或“讨论”按钮时,如何启用光标?目前,在用户点击“提交帖子”或“讨论”按钮后,用户必须使用鼠标在该字段中单击以将光标移动到那里以便键入。

1 个答案:

答案 0 :(得分:1)

您可以使用模板onRendered生命周期事件以及标准jQuery对象focus方法。

假设您的模板名为postSubmit,然后添加此代码以使第一个输入(或textarea或其他......)抓取焦点。

Template.postSubmit.onRendered(function(){
  this.$("input:first, textarea:first, select:first").focus();
});