当前位置:   article > 正文

react+js实现textarea的高度自适应_textarea 文本框根据输入内容自适应高度的代码 react

textarea 文本框根据输入内容自适应高度的代码 react

react中插入textarea,由后端返回的内容决定textarea的高度。

import React from 'react';
import {Input} from 'antd';
import $ from 'jquery';
const { TextArea } = Input;

let valueShow='文本文本文本文本文本文本文本文本文本文本文本文本文本文本'
export default class Index extends Component {
    componentDidMount() {
        this.adaptiveHeight()
    }

    componentDidUpdate() {
        this.adaptiveHeight()
    }
    adaptiveHeight = () => {
        $('textarea').height(0)//先初始化一下,避免记录上一下的高度
        $('textarea').each(function () {
        	//this指向textarea本身
            this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;');
        })
    }
    render() {
        return (      
                <div>
                    //readOnly 只读,不可编辑
                    <TextArea readOnly value={valueShow} />
                </div>
        )
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/115725
推荐阅读
相关标签
  

闽ICP备14008679号