。 // 在index为1的位置替换成 哈哈哈 let str = "012345"; let index = 1; str = str.substr(0, index) + " 哈哈哈 "+ str.substr(index+1); console.log(str); // 在index为1的位置 Read More
inputFocus(){ //监听输入框获得焦点,判断软键盘弹起 let bodyEle = document.documentElement || document.body; this.$nextTick(()=>{ bodyEle.scrollTop = bodyEle.scrollHeig Read More