摘要:
http://jingyan.baidu.com/article/1974b2898a69aef4b1f774eb.html 阅读全文
摘要:
需求:实现一个简单的地址关联下拉选择框。 1、通过id拿到select标签 2、定义一个select.onchange匿名函数 3、定义一个变量获取select标签里面的value 阅读全文
摘要:
http://iphone.tgbus.com/news/class/201503/20150304141407.shtml 破解id密码的最新dns 218.59.181.182 阅读全文
摘要:
http://www.cnblogs.com/Ming8006/p/5757984.html 阅读全文
摘要:
http://www.doubean.com/face/Like.aspx?p=2 阅读全文
摘要:
python列表 ['a','1','vs2'] 里面的值可以改 python元祖 ('a','1','css','sdf12') 里面的值不能改 python字典 {'status':233,'message','sshha'} 阅读全文
摘要:
1 package pers.xeon.automate.auxt; 2 3 import org.openqa.selenium.By; 4 import org.openqa.selenium.WebElement; 5 6 /** 7 * @author xeon 8 * @version 创 阅读全文
摘要:
1.打开WORD文档,插入多张图片。 2.在word中按alt+f11组合键,进入VBA模式。 3.在左边的工程资源管理器中找到你的word文档,在其上右键/添加/模块 4.复制以下代码 Sub Macro()Mywidth = 3.5 '10为图片宽度(厘米)Myheigth = 6 '10为图片 阅读全文
摘要:
1. . ==> class选择器 2. # ==> id选择器 3. * ==>选择所有元素 4.<p> ==>选择所有<p>标签的元素 5.element1>element2 ==>选择父元素为<element1>元素的所有<element2>元素 6.div+input ==>选择所有div元 阅读全文
摘要:
1.python中try/except/else/finally正常的语句是这样的: try: normal excute block except A: Except A handle except B: Except B handle except: other exception handle 阅读全文