代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Css
】
实现Textarea字数统计
作者:
依依
/ 发布于
2016/10/14
/
872
HTML <div class="item-textarea"> <textarea></textarea> <i>500</i> characters left </div> CSS .item-textarea{ position: relative; } .item-textarea > textarea{ width: 100%; height: 68px; padding: 10px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; background: #fff; -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3); box-shadow: inset 0 1px 2px rgba(0,0,0,.3); border: solid 1px #ddd; -webkit-box-sizing: border-box; box-sizing: border-box; font-size: 0.14rem; } .item-textarea > span{ display: block; position: absolute; right: 6px; bottom: 7px; color: #9a9a9a; font-size: 0.12rem; } .item-textarea > span > i{ color: #55acef; } 引入jQuery: <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> JS <script> function statInputNum(textArea, numItem) { var max = numItem.text(), curLength; textArea[0].setAttribute("maxlength", max); curLength = textArea.val().length; numItem.text(max - curLength); textArea.on('input propertychange', function () { numItem.text(max - $(this).val().length); }); } $(function () { $(".item-textarea").each(function () { var textArea = $(this).find("textarea"), word = $(this).find("i"); statInputNum(textArea, word); }); }); </script>
试试其它关键字
同语言下
.
前端PC-移动端CSS公共样式+HTML
.
手机端页面通用样式
.
H5页面通用头部设置
.
elect默认样式美化代码兼容移动端和pc端
.
按钮效果 css
.
唤醒app
.
放大效果
.
html5+css3实现上拉和下拉刷新
.
html上传图片后,在页面显示上传的图片
.
html5实现点击弹出图片
可能有用的
.
前端PC-移动端CSS公共样式+HTML
.
手机端页面通用样式
.
H5页面通用头部设置
.
elect默认样式美化代码兼容移动端和pc端
.
按钮效果 css
.
唤醒app
.
放大效果
.
html5+css3实现上拉和下拉刷新
.
html上传图片后,在页面显示上传的图片
.
html5实现点击弹出图片
依依
贡献的其它代码
(
32
)
.
间隔5秒循环执行一个方法
.
星期判断
.
总在最前
.
计算标准差
.
查看Hive表信息及占用空间的方法
.
定期移植数据的存储过程
.
检查 HTTP 请求的返回代码
.
获取某段时间内的所有日期
.
判断操作系统
.
获取执行插入数据后的id
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3