之所以笔记一下这个,因为我在项目中经常用到。$('.scroll_top').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);}); //页面滚动至顶部 $('.scroll_a').click(function(){ ...
分类:
Web程序 时间:
2018-04-27 13:24:55
阅读次数:
358
<marquee onmouseover=this.stop() onmouseout=this.start() behavior="scroll" scrollamount="3" scrolldelay="0" loop="-1" width="1000" hspace="10" vspace= ...
分类:
其他好文 时间:
2018-04-26 23:25:48
阅读次数:
182
<!--more--> <ul id="demo"> <li v-for="item in list">{{item}}</div> </ul> <script> new Vue({ el:'#demo', data:{ list=[0,1,2,3,4,5,6,7,8,9,10] }, method ...
分类:
其他好文 时间:
2018-04-26 18:35:12
阅读次数:
213
在UI自动化测试中,必然会遇到环境不稳定,网络慢的情况,这时如果不做任何处理的话,代码会由于没有找到元素而报错。这时我们就要用到wait,而在Selenium中,我们可以用到一共三种等待,每一种等待都有自己的优点或缺点,如果选择最优的等待方式。 time(固定等待) 在开发自动化框架过程中,最忌讳使 ...
分类:
其他好文 时间:
2018-04-26 11:58:56
阅读次数:
143
http://www.dbhelp.net/2017/01/06/pxc-5-7-14-%E5%AE%89%E8%A3%85%E9%83%A8%E7%BD%B2-pxc-install.html PXC是Percona XtraDB Cluster的缩写,是一种具有高可用性和高扩展性的MySQL开源 ...
分类:
其他好文 时间:
2018-04-25 19:03:23
阅读次数:
215
public class JdbcDao { private Connection conn=null; //数据库连接对象 private String strSql=null; //JDBC连接数据库 public JdbcDao() { String driver ="com.mysql.jd ...
分类:
数据库 时间:
2018-04-24 17:41:39
阅读次数:
1017
1、Html对象获取问题 统一使用:document.getElementById("idName"); 2、const问题 统一使用var关键字来定义 3、event.x与event.y问题 ie下没有page.x,page.y属性,有x,y属性 firifox下,有page.x,page.y属性 ...
分类:
Web程序 时间:
2018-04-24 15:32:23
阅读次数:
226
1. 偏移量共包括offsetTop、offsetLeft、offsetWidth、offsetHeight 元素:内容大小(width、height)、内边距(padding)、边框(border)、外边距(margin)、滚动条(scroll) 【1】offsetWidth:元素在水平方向上占据 ...
分类:
Web程序 时间:
2018-04-21 17:35:13
阅读次数:
272
原文: http://www.haorooms.com/post/js_scroll_width 参考: https://www.cnblogs.com/benxiaohai-microcosm/p/7814825.html 大家好,十一小长假结束了。。相信大家玩的都很开心,还没有尽兴!好多网友期盼 ...
分类:
Web程序 时间:
2018-04-20 22:05:23
阅读次数:
156