Posted in Javascript onJuly 20, 2012
核心代码:
<script type="text/javascript" src="http://demo.3water.com/jslib/jquery/jquery-1.7.2.min.js"></script> <script type="text/javascript"> $(function() { $(window).scroll(function() { var top = $(window).scrollTop()+200; var left= $(window).scrollLeft()+320; $("#editInfo").css({ left:left + "px", top: top + "px" }); }); }); </script> <div id="editInfo" style="float:left;width:300px;background-color:#ccc;position:absolute;top:200px;"> <div>用户名:<input type="text" /></div> <div>密码:<input type="text" /></div> <div>年龄:<input type="text" /></div> <div>备注:<input type="text" /></div> <div><input type="button" value="保存" /></div> </div> <div style="height:1500px"></div>
在线演示 http://demo.3water.com/js/2012/jquery_demo/jquery_div.html
记得以前写这样的代码比较麻烦,现在有了JQuery简单多了,就几行代码搞定!
基于jquery的DIV随滚动条滚动而滚动的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@