约好了同女朋友一起吃晚饭,因为项目正好今晚上线,只好爽约作罢,微信上发送了一个玫瑰表情已表歉意,
奈何女友想要999朵.于是简单看了下微信网页版的结构,说干就干
第一步 angular架构,
第二步 F12 console走起,获取输入区域位置:angular.element('pre:last').scope().editAreaCtn
第四步 封装函数,并拿到发送按钮对应的函数angular.element('pre:last').scope().sendTextMessage();
第五步 本来想写for寻混来执行函数,奈何for循环速度太快,很多消息发送不出去,前面都有一个感叹号,那只好周期发送了
setInterval(test,1000) //1秒1次
最后附上所有代码:
rose = '![](/zh_CN/htmledition/v2/images/spacer.gif)'
function test(){
angular.element('pre:last').scope().editAreaCtn = rose;
angular.element('pre:last').scope().sendTextMessage();
}
setInterval(test,1000)