最近遇到一个功能,让input输入框根据输入内容的多少自己撑开宽度,试了试原生的input标签,发现有默认宽度,所以找了找原理,自己实现一个input
实现原理比较简单 动态获取dom元素增加input事件然后给想要显示的元素附上输入的内容
上效果图截图
上vue2示例代码
<template>
<div>
<div id="input-container">
<p id="input-text">请输入文本</p>
<span id="fake-input" placeholder="placeholder" contenteditable></span>
</div>
</div>
</template>
<script>
export default{
data(){
return{
text: '有默认值'
}
},
methods:{
},
mounted() {
const fakeInput = document.getElementById('fake-input');
const inputText = document.getElementById('input-text');
fakeInput.addEventListener('input', function() {
inputText.textContent = '您输入了: "' + fakeInput.textContent + '"';
this.text = fakeInput.textContent;
});
if (this.text) {
const fakeInput = document.getElementById('fake-input');
fakeInput.textContent = this.text
}
}
}
</script>
<style>
#input-container {
width: 300px;
border: 1px solid #ccc;
padding: 10px;
}
#fake-input {
display: inline-block;
//width: 100%;
max-width: 100%;
padding: 5px;
border: 1px solid #ccc;
outline: none;
text-align: left;
}
#fake-input:empty:before {
content: attr(placeholder);
color: #ccc;
}
</style>
标签:自定义,text,textContent,width,关于,fake,input,fakeInput From: https://www.cnblogs.com/harryzong/p/18339119