您好,登錄后才能下訂單哦!
先上效果圖###
textarea下劃線
設(shè)置一張1*35 //行高 的圖片 , 設(shè)置背景圖即可.
background: url('./img/linebg.png') repeat;
border: none;outline: none;overflow: hidden;
line-height: 35px;//注意行高要和背景圖高度一致resize: none;
固定輸入行數(shù)
需求:用戶固定不論多少字節(jié),只能輸入2行.
因?yàn)槭窍拗菩袛?shù),所以不能用maxlength設(shè)置.
實(shí)現(xiàn)思路
首先想到計(jì)算出用戶輸入了幾行,然后超出部分字符刪除掉就OK.
<textarea class='textarea' @scroll='textsrc' v-model='text.Headquarters' ref='Headquarters' rows="2"></textarea>
首先取出
textarea元素的整體高度,然后除一下行高很輕松的到目前輸入到幾行.
因?yàn)槿绻脩粢淮螐?fù)制一大段文字 , 粘貼到textarea里則會直接出現(xiàn)多行 , 刪除字符串超出部分換行還會觸發(fā)scroll事件, 所以用if語句判斷一下是否滿足了限制.
發(fā)現(xiàn)多行代碼排版錯(cuò)誤,貼張圖吧.
textsrc() { this.$refs.Headquarters.scrollTo(0, 0) let LineNumber = this.$refs.Headquarters.scrollHeight / 35; if (LineNumber => 2) { this.state = false; } else { this.state = true; }; !this.tiemr && !this.state && this.tiemer(); this.tiemr && this.state && clearInterval(this.tiemr); if (this.state) { this.tiemr = null; } },
寫一個(gè)刪除多余字符函數(shù)
tiemer() { this.tiemr = setInterval(() => { this.text.Headquarters = this.text.Headquarters.slice( 0, this.text.Headquarters.length - 1 ); if (this.$refs.Headquarters.scrollHeight / 35 == 2) { clearInterval(this.tiemr) this.tiemr = null this.state = true } }, 10); },
最后貼一下 github ,歡迎有更好方法的大神賜教.
總結(jié)
以上所述是小編給大家介紹的使用Vue實(shí)現(xiàn)textarea固定輸入行數(shù)與添加下劃線樣式,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。