IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> textarea的文字显示 -> 正文阅读

[JavaScript知识库]textarea的文字显示

在这里插入图片描述

html

			<div class="message-ly">
				<div class="message-ly-mask"></div>
				<div class="say-box" data-slide-in="at 3000 from zoomIn use linear during 2000">
					<i class="message-ly-close"></i>
					<div class="message-ly-header">
						<span class="message-ly-close">取消</span>
						<span class="message-ly-tit">我的留言</span>
						<button id="save" type="button">发出</button>
					</div>
					<div class="textarea" currentlength="0" maxlength="80">
						<textarea name="liuyan" placeholder="回首山大的生活,你是否有话想说?" maxlength="80"></textarea>
					</div>
				</div>
			</div>

css

.message-ly {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 100%;
    display: none;
}
.message-ly-mask {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.say-box {
    width: 100%;
    height: 55%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 8;
    background-color: #fff;
}
.say-box::before {
    content: '';
    width: 0.28rem;
    height: 0.28rem;
    display: inline-block;
    position: absolute;
    left: 0.2rem;
    top: 0.5rem;
    z-index: 1;
}
.message-ly-close {
    font-size: 0.32rem;
    color: #3787FF;
    z-index: 9;
    display: inline-block;
    width: 25%;
    margin-left: 0.5rem;
}
.message-ly-header {
    line-height: 50px;
}
.message-ly-close {
    font-size: 0.32rem;
    color: #3787FF;
    z-index: 9;
    display: inline-block;
    width: 25%;
    margin-left: 0.5rem;
}
.message-ly-tit {
    font-size: 0.5rem;
    color: #000;
    display: inline-block;
    width: 35%;
    text-align: center;
}
#save {
    width: 1.3rem;
    height: 0.56rem;
    background: linear-gradient(90deg,rgba(251,141,11,1),rgba(255,193,39,1));
    border-radius: 0.28rem;
    border: none;
    outline: none;
    color: #fff;
    float: right;
    margin-right: 0.3rem;
    margin-top: 0.15rem;
}
.textarea {
    position: relative;
    /* width: calc(100% - 0.64rem); */
    height: calc(100% - 2.2rem);
    padding-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.textarea textarea, .textarea textarea:focus {
    border: 0;
    padding: 0.3rem 0.3rem 0.3rem 0.5rem;
}
textarea {
    border: none;
    outline: none;
    line-height: 2;
    margin: 0 auto;
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
    font-size: inherit;
    resize: none;
    padding: 0.3rem;
    color: #686868;
}
.textarea::after {
    content: attr(currentlength) " / "attr(maxlength);
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 12px;
    color: #aaa;
}

js

        $('.message-ly').fadeIn();
            //留言关闭
	    $('.message-ly-close').click(function() {
	        $('.message-ly').fadeOut();
	    });
	        //留言保存
    $('#save').click(function(e) {
        e.preventDefault();
        e.stopPropagation();
        var liuyan = $('textarea').val().trim();
        if (liuyan == '') {
            tooltipClear('你还没有留言呢');
            return;
        }
        $.ajax({
            url: urls.save_message,
            data: {
                xh: xh,
                content: liuyan
            },
            dataType: 'json',
            type: 'post',
            timeout: 10000,
            success: function(data) {
                tooltipClear('留言已成功,待审核');
                $('.message-ly').fadeOut();
                $('textarea').val('');
            },
            error: function(xhr, type, errorThrown) {
                tooltipClear('请求服务失败');
            }
        });
    });
     //留言
    //实时计算textarea长度
    $('textarea').on('input propertychange', function() {
        var _len = $(this).val().length;
        $(this).parent().attr('currentlength', _len);
    });
    $('textarea').focus(function() {
        $(this).parent().css('borderColor', 'rgba(188,66,66,0.8)');
    }).blur(function() {
        $(this).parent().css('borderColor', '#ffffff');
    });
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-04-23 10:46:47  更:2022-04-23 10:47:23 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 0:59:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码