jQuery_review之textarea的放大和缩小的jQuery实现

    众所周知,各种浏览器对于HTML、CSS以及原生JS的支持不尽相同。但是jQuery很好地封装了各种浏览器不同的实现,能够很好地解决跨浏览器的CSS问题。下面就是在review表单操作的时候的一个DEMO,记录在这个地方,方便后面做项目的时候查找使用,这个如果添加动画效果会更好,jQuery所有的动画效果都是可以通过animate函数来实现。

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <script type="text/javascript" src="jquery-1.8.3.js"></script>
  <script type="text/javascript">
      $(function(){
            $("input[type!='button'],textarea").focus(function(){
              $(this).addClass("onfocus");
          }).blur(function(){
              $(this).removeClass("onfocus");
          });
          
          $(".opeTextArea").toggle(function(){
              $(this).text("max");
              $("textarea").width(400).height(120);
          },function(){
              $(this).text("min");
              $("textarea").width(200).height(60);
          });
      });
  </script>
  <style type="text/css">
      .onfocus{
          border:solid red 2px;
          background-color:grey;    
      }
      textarea{
          width:200px;
          height:60px;
      }
      .resumeContainer{
          width:200px;
      }
      .opeTextArea{
          color:white;
          background-color:black;
          margin:2px;
          padding: 2px 6px;
      }
  </style>
  </head>
  <body>
      <form action="#" method="get">
          <label for="name">name:</label>
              <input type="text" name="name"><br/>
          <label for="password">password:</label>
              <input type="password" name="password"><br/>
          <label for="qq">QQ:</label>
              <input type="text" name="qq"><br/>
          <label for="resume">resume:</label>
          <div class="resumeContainer">
              <span class="opeTextArea">min</span>
                  <textarea rows="3" cols="10"></textarea>
          </div>
          <input type="button" value="submit"><br/>
      </form>
  </body>
</html>



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值