私は2つの異なるクラスを持つ2つのdivを持っています:
divクラス名は:good
divクラス名は:bad
このdivのjavascript(ユーザースクリプト)をランダムにクリックしたいと思います。私はjavascriptでコーディングしたことはなく、インターネットでこのコードを見つけました。
私はこのコードを持っています:
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
function main() {
setInterval(function(){
$('div.good').click();
$('div.bad').click();
}, 5000);
}
addJQuery(main);