手机端复制到剪贴板:
//CopyInput 是ref的值,此行是选中的意思
this.$refs.CopyInput.select()
//此行是调用复制命令
document.execCommand('copy')
//此行是收起软键盘,因为上一行代码复制后手机端会弹起软键盘,需要手动收起软键盘
this.$refs.CopyInput.blur();
软键盘:
点击input输入框,软键盘显示:
this.$refs.inputText.focus();
点击键盘开始键,软键盘隐藏:
this.$refs.inputText.blur();
Comments | NOTHING