码迷,mamicode.com
首页 > 其他好文 > 详细

input输入什么div图层显示什么

时间:2014-06-14 10:07:32      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   class   ext   color   width   html   

<html>
<meta charset="utf-8" />
<style >
     .ppp{
          width:600px;
     height:300px;
     background-color:pink;
     }

   </style>

   <input type="text" id="ttt" name="" value=""  maxlength=""  placeholder="" />  <br /><br /><br />


   <div class="ppp"></div><!-- -->


   <script src="jquery-1.7.2.min.js"></script>

<script>
  $("document").ready(function(){  
          $("#ttt").keyup(  
               function(){$(".ppp:first").html(this.value)}
               )          
          });
</script>
</html>

input输入什么div图层显示什么,布布扣,bubuko.com

input输入什么div图层显示什么

标签:style   class   ext   color   width   html   

原文地址:http://blog.csdn.net/xtqueen/article/details/30490451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!