提示:vue中使用contenteditable
文章目录
前言
开发需求,研究了一下,做个记录分享。
1、输入框文字提示带样式
2、输入内容文字字体颜色为黑色
3、查询操作完成后,未查询到的数据标红回显到输入框
一、contenteditable
什么是contenteditable:
contenteditable 属性指定元素内容是否可编辑。
个人理解就是元素标签加上这个属性就可以像input一样,可以输入内容了
二、contenteditable的使用
1、TextareaComponent.vue
<template><div class="tctextarea_box"><div id="tctextarea" class="tctextarea" contenteditable="plaintext-only" @focus="focusTxt" @input="inputTxt" @blur="blurTxt" v-html="txtHtml"></div></div></template><script>
export default{
name:"TextareaComponent",
computed:{},
props:{},data(){return{
tipData:['输入框第一条提示','输入框第二条提示','输入框第三条提示','输入框第四条提示','输入框第五条提示'],
txtData:[],
txtHtml:'',
txtStr:'',}},created(){
this.createTipHtml();},
methods:{//textarea输入inputTxt(e){},//获取焦点focusTxt(e){//获取焦点时,输入框文字为黑色if(e.target.innerHTML){if(e.target.innerHTML.indexOf('#FF4019')>-1){
let arr = e.target.innerHTML.split('#FF4019');
let str ='';for(let i=0;i<arr.length;i++){
str+=arr[i];if(i!==arr.length-1){
str+='#323D4D';}}
e.target.innerHTML = str;
this.focusTextarea();}}//输入框获得焦点时内容为初始提示,清空提示if(this.txtHtml.indexOf(this.tipData[0])>-1){
this.txtHtml ='';
this.focusTextarea();}},//主动使textarea获取焦点focusTextarea(){
let node = document.getElementById('tctextarea');if(window.getSelection){
let range = window.getSelection();
range.selectAllChildren(node);// range.collapseToStart();
range.collapseToEnd();}else{
let range = document.selection.createRange();
range.moveToElementText(node);
range.collapse(false);
range.select();}},//失去焦点blurTxt(e){//如果输入内容为'' 出现提示
let str = e.target.innerText?e.target.innerText.trim():'';if(str.length<1){
this.createTipHtml();}else{
this.txtStr = e.target.innerText;
this.createInputHtml();}},//创建提示文字createTipHtml(){
let temp ='';for(let i=0;i<this.tipData.length;i++){
temp+=`<div class="tctip_item" style="font-size: 14px; color: ${i==0?'#F77700':'#A2AEBF'} ;line-height: 24px; display: flex; box-sizing: border-box; padding-bottom:5px;margin-:0;"><div class="tctip_l" style="width: 20px;">${i+1}.</div><div class="tctip_r" style="flex-grow:1;">${this.tipData[i]}</div></div>`
}
this.txtHtml = temp;},//创建输入内容createInputHtml(str,colorType,splitStr){
let temp ='';
let splitTxt = splitStr||'\n';
let data= this.deleteSpace(str||this.txtStr).split(splitTxt);
let newData =[];for(let i=0;i<data.length;i++){if(data[i]!=''){//输入内容文字默认为黑色 当输入内容查询不到时 显示为红色
temp+=`<div class="tctxt_item" style="font-size:14px;color:${colorType?'#FF4019':'#323D4D'};line-height:24px;">${data[i]}</div>`;
newData.push(data[i])}}
this.txtHtml = temp;//触发父组件事件
this.$emit('changeTextareaValue',newData);},//删除字符串中的空格deleteSpace(str){
let data =[];if(str){
data = str.split(' ');}else{
data = this.txtStr.split(' ');}
let newStr='';for(let i=0;i<data.length;i++){if(data[i]!=''){
newStr+=data[i];}}return newStr
},},};</script><style lang="less" scoped>.tctextarea_box{
width:100%;
height:100%;}.tctextarea{
width:100%;
height:100%;
box-sizing: border-box;
padding:20px;// border: 1px solid #eee;
overflow-y:auto;
display:inline-block;
outline: none;
caret-color:red;
font-size:14px;
color:#323D4D;
line-height:24px;}.tctextarea::-webkit-scrollbar-thumb{
display: block;
cursor: pointer;}</style>
2、父组件调用
/**html**/<div class="lm_textarea_out"><TextareaComponent ref="tcRef" @changeTextareaValue="changeTextareaValue"/></div>/**js**///获取输入内容changeTextareaValue(data){//data为输入的内容}//初始状态
this.$refs.tcRef&&this.$refs.tcRef.createTipHtml();//未查询到数据 显示到输入框内
this.$refs.tcRef&&this.$refs.tcRef.createInputHtml(`未查询到的数据数组`.join('\n'),1);/**css**/.lm_textarea_out{
height:400px;
width:300px;
border-radius:12px;
border:1px solid #eee;}
总结
踩坑路漫漫长@~@
本文转载自: https://blog.csdn.net/weixin_44434938/article/details/128964450
版权归原作者 longlongago~~ 所有, 如有侵权,请联系我们删除。
版权归原作者 longlongago~~ 所有, 如有侵权,请联系我们删除。