千峰培训_前端_day04_js与斗鱼机器人

首先是0-100的猜数字游戏,代码如下:



	
		
		0-100猜数字游戏
	
	
		

0-100猜数字游戏

然后是斗鱼直播平台的自动评论机器人,代码如下:

setInterval(function(){document.querySelector('.ChatSend-txt').value='小姐姐你真好看,我要给你生猴子'+Math.round(Math.random()*10);document.querySelector('.ChatSend-button ').click()},1000)

停止的函数是 clearInterval 函数。

最后是微信网页版定时发送消息:

var appElement = document.querySelector('[ng-controller=chatSenderController]');
var $scope = angular.element(appElement).scope();
$scope.editAreaCtn = "今晚搞不搞";
$scope.sendTextMessage();
undefined
setInterval(function(){$scope.editAreaCtn = "今晚搞不搞";
$scope.sendTextMessage();},5000)

 

你可能感兴趣的:(千峰培训_前端_day04_js与斗鱼机器人)