这里我用vue项目来讲,具体可以根据自己项目去修改
1.输入框自动获取焦点
<input ref="myInput" type="text">
标签就这么写,主要在于ref这个属性,然后在js里面写上代码
this.$refs.myInput.focus();
这样就会自动获取焦点了,不过有一点需要注意
**注意:**js里面的代码,一定要确保input输入框标签被渲染出来了再执行,必要时可以这么写
this.$nextTick(()=>{
this.$refs.myInput.focus();
})
this.$nextTick就是在标签渲染后才执行里面的代码
2.判断输入框是否获取焦点了
var myInput = $('#J__wcEditor');
if (myInput == document.activeElement) {
console.log('获取焦点');
} else {
console.log('未获取焦点');
}