Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
蟑螂
江苏省南京市
关注作者
(1)
收藏此代码
(131)
← JS简单获取日期相差天数的方法
→ Canvas画的组织结构图
相关代码
textarea
随着
文字
高度
自动
改变
多个
textarea
随着
文字
高度
自动
改变
textarea
高度
自适应
超过div部分长度
自动
采用省略号
根据容器的
高度
进行截取字符的长度
文字
滚动(原创)
超简js单循环播放
自动
向上循环滚动代码
Html
Css
Js
// JavaScript Document function adjustHeight(textareaElement, minHeight) { // compute the height difference which is caused by border and outline // 计算因边框和轮廓产生的高度差异 var outerHeight = parseInt(window.getComputedStyle(el).height, 10); var diff = outerHeight - el.clientHeight; // set the height to 0 in case of it has to be shrinked // 设置高度为0以防需要收缩(高度) el.style.height = 0; // set the correct height // el.scrollHeight is the full height of the content, not just the visible part // 设置正确的高度 // el.scrollHeight 是文本内容的全部高度,而不仅仅是可见部分的。 el.style.height = Math.max(minHeight, el.scrollHeight + diff) + 'px'; } // we use the "data-adaptheight" attribute as a marker // 我们使用"data-adaptheight"属性作为一个标记 var textAreas = document.querySelectorAll('textarea[data-adaptheight]'); // iterate through all the textareas on the page // 迭代本页所有的文本域 for (var i = 0, l = textAreas.length; i < l; i++) { var el = textAreas[i]; // we need box-sizing: border-box, if the textarea has padding // 如果文本域有边距,我们需要设置box-sizing: border-box el.style.boxSizing = el.style.mozBoxSizing = 'border-box'; // we don't need any scrollbars, do we? :) // 我们不需要滚动条,不是么? :) el.style.overflowY = 'hidden'; // the minimum height initiated through the "rows" attribute // 通过"rows"属性初始化的最小高度 var minHeight = el.scrollHeight; el.addEventListener('input', function() { adjustHeight(el, minHeight); }); // we have to readjust when window size changes (e.g. orientation change) // 当窗口大小改变时,我们需要重新调整高度(例如方向变化) window.addEventListener('resize', function() { adjustHeight(el, minHeight); }); // we adjust height to the initial content // 我们调整初始内容的高度 adjustHeight(el, minHeight); }
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
textarea随着文字高度自动改变
代码描述:textarea随着文字高度自动改变
2
最新
发表评论
全部评论
暂时没有评论!
八月不到底
0
2018/1/6 14:33:26
好厉害呀 小哥哥
回复
WckY
0
2017/12/11 10:36:26
666 和这网站的官网评论如出一辙 给力
回复
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>textarea随着文字高度自动改变-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号