gpt4 book ai didi

javascript - meteor 显微镜激活光标

转载 作者:行者123 更新时间:2023-11-28 01:31:10 25 4
gpt4 key购买 nike

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

最佳答案

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

假设您的模板名为 postSubmit,然后添加此代码以使第一个输入(或文本区域,或其他...)获得焦点。

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

关于javascript - meteor 显微镜激活光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30227207/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com