1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
(function() { 'use strict'; var button = document.createElement("button"); button.textContent = "一键点赞评论"; button.style.width = "90px"; button.style.height = "28px"; button.style.align = "center"; button.style.color = "white"; button.style.background = "#e33e33"; button.style.border = "1px solid #e33e33"; button.style.borderRadius = "4px"; button.addEventListener("click", clickBotton) function clickBotton(){ setTimeout(function(){
var comment=["针不戳呀,写的针不戳!","学习了!b( ̄▽ ̄)d","本文不错( ̄ˇ ̄),值得学习!(= ̄ω ̄=)","感谢博主的分享!(^ ^)/▽▽\(^ ^)","感谢博主,你的文章让我得到一些收获!( ̄ˇ ̄)"]; var STARTNUMBER = -1; var ENDNUMBER = 5; var temp_count = Math.floor(Math.random()*(STARTNUMBER-ENDNUMBER+1))+ENDNUMBER ;
document.getElementsByClassName("tool-item-comment")[0].click(); document.getElementById("comment_content").value = comment[temp_count]; document.getElementsByClassName("btn-comment")[0].click(); document.getElementById("is-like").click()
},100); }
var like_comment = document.getElementsByClassName('toolbox-list')[0]; like_comment.appendChild(button); })();
|