05 2016 档案

摘要:1、printscreen全屏截图 2、ctrl+printscreen窗口截图 3、shift+printscreen选择截图 4、Ctrl+Alt+up arrow、Ctrl+Alt+down arrow 切换工作空间,工作空间相当于不同的屏幕一样 阅读全文
posted @ 2016-05-28 14:57 大山山 阅读(429) 评论(0) 推荐(0)
摘要:1、获取包含了特定后代节点的节点 //tbody/tr[./td/p[contains(text(),'创建:2016-05-20')]]/td[7]//td[2] //td[contains(@class, 'order-cell') and descendant::span[text()='B0 阅读全文
posted @ 2016-05-20 17:36 大山山 阅读(110) 评论(0) 推荐(0)
摘要:抓取速卖通纠纷订单详情,生成csv进行统计。 var macro1="CODE:";macro1+="VERSION BUILD=8970419 RECORDER=FX" + "\n";macro1+="TAB T=1" + "\n";macro1+="URL GOTO=http://trade.a 阅读全文
posted @ 2016-05-05 15:58 大山山 阅读(351) 评论(0) 推荐(0)
摘要:1、快速迭代元素 $$('tr.dispute-num td strong a').map(function (el) { return el.innerHTML; }) 2、复选框选中/取消选中 checks.map(function(check){$(check).prop( "checked" 阅读全文
posted @ 2016-05-04 11:16 大山山