php设置文本框高度,设置多行文本框[textarea]自动生成高度

这次给大家带来设置多行文本框[textarea]自动生成高度,设置多行文本框[textarea]自动生成高度的注意事项有哪些,下面就是实战案例,一起来看一下。

实现功能:

1/当textarea换行时自动增加一行高度

2/当textarea删除一行时 自动减少一行的高度 依赖:jquery.xxx.js 工作中需要使用类似功能但是觉得使用插件需要导入其他文件很不方便所以就写了一个

textarea jquery插件

内容

textareaAutosize_dc: function() {

$("textarea").on("keyup", function(e) {

var

current

EnterCount = $(this).val().split("\n").length;

var lineHeight = Number($(this).css("

line-height

").replace("px", ""));

var enterCount = $(this).attr("enterCount");

if (currentEnterCount < enterCount && enterCount != undefined) {

//每行减掉固定行高

$(this).height($(this).height() - lineHeight);

} else if (currentEnterCount > enterCount) {

//每行加入固定行高

$(this).height($(this).height() + lineHeight);

$(this).attr("enterCount", currentEnterCount);

}

//记录当前行高

$(this).attr("enterCount", currentEnterCount);

});

}

});

//调用自动高度

$.textareaAutosize_dc();

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

Jquery+Mobile自定义按钮图标步骤详解

Jquery+Mobile自定义按钮图标步骤详解

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值