how2j.cn

步骤 1 : 点击显示用户留言输入框效果   
步骤 2 : 点击显示用户留言输入框效果 js讲解   

步骤 1 :

点击显示用户留言输入框效果

edit
点击输入框的时候,出来一个边框是橘黄色的文本域
运行效果
<!DOCTYPE html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://how2j.cn/study/js/jquery/2.0.0/jquery.min.js"></script> <link href="https://how2j.cn/study/css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> <script src="https://how2j.cn/study/js/bootstrap/3.3.6/bootstrap.min.js"></script> </head> <style> body{ font-size: 12px; font-family: Arial; } a{ color:#999; } a:hover{ text-decoration:none; color: #C40000; } div.address { margin: 20px 5px; text-align: left; } tr.orderItemTR td { border-bottom: 1px solid #E5E5E5; } div.buyPageDiv { margin: 20px auto; max-width: 1013px; } table.addressTable { margin: 20px 20px; width: 600px; } span.wangwangGif { display: inline-block; width: 25px; height: 25px; background-image: url(../../img/site/wangwang.gif); background-repeat: no-repeat; background-color: transparent; background-attachment: scroll; background-position: -83px -0px; position: relative; top: 8px; left: 2px; } th.productListTableFirstColumn { text-align: left !important; } tbody.productListTableTbody td { text-align: center; } img.tmallbuy { width: 15px; } table.addressTable td input { border: 1px solid #AFAFAF; width: 200px; } div.orderItemTotalSumDiv { margin: 40px; height: 40px; } table.productListTable th { color: #999999; font-family: 宋体; font-weight: normal; font-size: 12px; text-align: center; padding-bottom: 5px; } table.addressTable td { color: #333333; text-align: right; vertical-align: top; padding-right: 5px; text-align: left; height: 30px; } div.orderItemSumDiv span { color: #999999; } a.marketLink:hover { color: black; font-size: 12px; text-decoration: underline; font-family: 宋体; font-weight: normal; } td.orderItemProductInfo img { height: 16px; } table.addressTable td.firstColumn { width: 100px; } table.productListTable tr.rowborder td { background-color: #b2d1ff; border-right: 2px solid #fff; height: 3px; } span.orderItemProductPrice, span.orderItemProductNumber { color: #000000; } a.marketLink { color: black; font-size: 12px; font-family: 宋体; font-weight: normal; } button.submitOrderButton { border: 1px solid #C40000; background-color: #C40000; text-align: center; line-height: 40px; font-size: 14px; font-weight: 700; color: white; float: right; } label.orderItemDeliveryLabel { color: #666666; font-family: 宋体; font-size: 12px; font-weight: normal; } tr.orderItemTR td { padding: 10px 0px; } td.orderItemProductInfo { text-align: left; } table.productListTable { width: 100%; border-collapse: separate; } table.addressTable td textarea { border: 1px solid #AFAFAF; margin-bottom: 10px; width: 400px; } span.leaveMessageTextareaSpan { display: inilne-block; } a.orderItemProductLink:hover { color: #666666; text-decoration: underline; } tbody.productListTableTbody td.orderItemFirstTD { text-align: left; } textarea.leaveMessageTextarea { border: 1px solid #FFAD35; width: 250px; height: 60px; resize: none; } td.orderItemFirstTD, td.orderItemLastTD { border-bottom: 0px solid black !important; } div.addressTip, div.productListTip { color: #333333; font-size: 16px; font-weight: bold; text-align: left; margin-bottom: 30px; } div.orderItemSumDiv { padding: 20px; border-top: 2px solid #B4D0FF; background-color: #F2F6FF; height: 50px; } div.orderItemTotalSumDiv span { color: #999999; } div.submitOrderDiv { height: 40px; margin: 20px 0px; } div.buyPageDiv button { display: inline-block; margin: 0px 10px; width: 180px; height: 40px; } span.orderItemTotalSumSpan { color: #C40000 !important; font-size: 22px; font-weight: bold; border-bottom: 1px dotted #F2F6FF; } span.orderItemUnitSum { color: #CC0000; font-weight: bold; } tbody.productListTableTbody td.orderItemProductInfo { text-align: left; } a.orderItemProductLink { color: #666666; display: block; } td.orderItemProductInfoPartTD { border-bottom: solid 1px #ECECEC; } select.orderItemDeliverySelect { width: 100px; height: 23px; } span.leaveMessageText { display: inilne-block; margin-right: 10px; float: left; } span.redStar { color: red; font-size: 8px; } img.orderItemImg { width: 50px; height: 50px; border: 1px solid #E9E9E9; } </style> <script> $(function(){ $("img.leaveMessageImg").click(function(){ $(this).hide(); $("span.leaveMessageTextareaSpan").show(); $("div.orderItemSumDiv").css("height","100px"); }); }); </script> <div class="buyPageDiv"> <div class="productList"> <div class="orderItemSumDiv"> <div class="pull-left"> <span class="leaveMessageText">给卖家留言:</span> <span> <img src="https://how2j.cn/tmall/img/site/leaveMessage.png" class="leaveMessageImg"> </span> <span class="leaveMessageTextareaSpan" style="display: none;"> <textarea class="leaveMessageTextarea" name="userMessage"></textarea> <div> <span>还可以输入200个字符</span> </div> </span> </div> <span class="pull-right">店铺合计(含运费): ¥9,152.25</span> </div> </div> </div> <div style="height:100px"></div>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
步骤 2 :

点击显示用户留言输入框效果 js讲解

edit
增值内容,请先登录
模仿天猫前端,单纯使用Html和CSS实现天猫官网, 大大提升前端技术与能力,积累宝贵前端项目经验。总计28张页面布局分析图, 33个js交互代码讲解, 395个选择器,1150个样式(每个均有注释), 涵盖全部68个知识点,267个学习步骤,包含一共21个讲解视频,累计时长11小时44分25秒,大小1.97G,为简历加上一个有吸引力的砝码。 学习期间,遇到本项目任何问题,都可以得到我的专业指导。 (购买一次,即可访问天猫前端所有知识点)
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
<script> $(function(){ $("img.leaveMessageImg").click(function(){ $(this).hide(); $("span.leaveMessageTextareaSpan").show(); $("div.orderItemSumDiv").css("height","100px"); }); }); </script>
<script>
$(function(){
    $("img.leaveMessageImg").click(function(){
        $(this).hide();
        $("span.leaveMessageTextareaSpan").show();
        $("div.orderItemSumDiv").css("height","100px");
    }); 
});
</script>


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2019-01-24 看了下天猫的样式,修改了一下留言功能,逻辑更完美
张小丶凡




跟着站长起名技术飞涨啊
加载中
 $("input.leaveMessageInput").focus(function () {
                $(this).hide();
                $("span.leaveMessageTextareaSpan").show();
                $("textarea.leaveMessageTextarea").focus();
                $("div.orderItemSumDiv").css("height","100px");
            })

            $("textarea.leaveMessageTextarea").blur(function () {
                $("span.leaveMessageTextareaSpan").hide();
                $("input.leaveMessageInput").show();
                $("input.leaveMessageInput").val($("textarea.leaveMessageTextarea").val());
                $("div.orderItemSumDiv").css("height","50px");
            })
            $("textarea.leaveMessageTextarea").keyup(function () {
                var num=$(this).val().length;
                if(num>=200)
                    num=200;
                var avaible=200-num;
                $("span.inputNumber").text(avaible);
                var buff=$(this).val();
                $(this).val(buff.substring(0,200));
            })

							


2 个答案

空白丨旋律
答案时间:2020-01-27
之前用DIV的输入要用html()获取内容,textarea是用val()获取内容,而且我发现html()的substring(0,200)会导致从头开始输入,val()的substring(0,200)这个没有这种情况

how2j
答案时间:2019-01-24
非常的 NICE !



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2018-03-07 站主你的框用谷歌打开太小了!
DK123456788




这样会更好点
<script>
    $(function(){
        $("img.leaveMessageImg").click(function(){
            $(this).hide();
            $("span.leaveMessageTextareaSpan").show();
            $("textarea.leaveMessageTextarea").css("height","100px").css("width","300px");
            $("div.orderItemSumDiv").css("height","123px");
        });
    });
</script>

							


2 个答案

尚未佩妥剑
答案时间:2018-09-11
大兄弟,你是怎么发现问题的,还是自己代码写错了?

how2j
答案时间:2018-03-08
你用的chrome什么版本啊?我的是 63.0.3239.132,看到没有问题呢



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到









提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 实践项目-天猫前端-交互 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图