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

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

<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() {

        //最小高度和最大高度默認

        $("#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>

以上就是本文的全部內(nèi)容,希望對大家學習jquery程序設計有所幫助。

更多信息請查看網(wǎng)絡編程
易賢網(wǎng)手機網(wǎng)站地址:jquery實現(xiàn)文本框textarea自適應高度

2025國考·省考課程試聽報名

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