jquery實(shí)現(xiàn)文本框textarea自適應(yīng)高度
來源:易賢網(wǎng) 閱讀:917 次 日期:2016-07-21 15:24:15
溫馨提示:易賢網(wǎng)小編為您整理了“jquery實(shí)現(xiàn)文本框textarea自適應(yīng)高度”,方便廣大網(wǎng)友查閱!

瀏覽器中默認(rèn)的文本框是不能根據(jù)內(nèi)容的增多變高,只能固定高度有滾動(dòng)條,體驗(yàn)不是很好,找了很多方法兼容都不行,總算找到個(gè)兼容良好的方法:

<body>

    <textarea id="textarea3" style="overflow-y:hidden; height:20px;resize: none">

    </textarea>

    <script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>

    <script type="text/javascript">

      $(function() {

        //最小高度和最大高度默認(rèn)

        $("#textarea1").textareaAutoHeight();

        //最大高度為100px

        $("#textarea2").textareaAutoHeight({maxHeight: 100});

        //最小高度為50px,最大高度為200px

        $("#textarea3").textareaAutoHeight({minHeight: 50, maxHeight: 200});

      })

      $.fn.extend({

        textareaAutoHeight: function(options) {

          this._options = {

            minHeight: 0,

            maxHeight: 1000

          }

          this.init = function() {

            for (var p in options) {

              this._options[p] = options[p];

            }

            if (this._options.minHeight == 0) {

              this._options.minHeight = parseFloat($(this).height());

            }

            for (var p in this._options) {

              if ($(this).attr(p) == null) {

                $(this).attr(p, this._options[p]);

              }

            }

            $(this).keyup(this.resetHeight).change(this.resetHeight)

                .focus(this.resetHeight);

          }

          this.resetHeight = function() {

            var _minHeight = parseFloat($(this).attr("minHeight"));

            var _maxHeight = parseFloat($(this).attr("maxHeight"));

            if (!$.browser.msie) {

              $(this).height(0);

            }

            var h = parseFloat(this.scrollHeight);

            h = h < _minHeight ? _minHeight :h > _maxHeight ? _maxHeight : h;

            $(this).height(h).scrollTop(h);

            if (h >= _maxHeight) {

              $(this).css("overflow-y", "scroll");

            }

            else {

              $(this).css("overflow-y", "hidden");

            }

          }

          this.init();

        }

      });

    </script>

  </body>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)jquery程序設(shè)計(jì)有所幫助。

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:jquery實(shí)現(xiàn)文本框textarea自適應(yīng)高度
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)