Javascript生成页面上的按钮,每秒自动单击另一个按钮

时间:2015-08-01 02:49:21

标签: javascript jquery onclick automation click

我想发出一个警告,它会点击另一个每秒都没有脚本生成的按钮。到目前为止我已经

var input=document.createElement("input");
input.type="button";
input.value="Click To Activate";
input.onclick = showAlert;
input.setAttribute("style", "font-size: 17px;position: fixed;top: 225px;right:40px:");
document.body.appendChild(input); 

function showAlert()
{
    alert("Active");
}

现在我想点击按钮,其中包含代码

<span class="b-link js-profile-header-vote" data-choice="yes"></span>

每一秒。

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
$(document).ready(function(){
var input=document.createElement("input");
input.type="button";
input.value="Click To Activate";
input.onclick = showAlert;
input.setAttribute("style", "font-size: 17px;");
document.body.appendChild(input); 

   function showAlert()
    {
      setInterval(function(){ $("#js_profile_header_vote_1").click(); }, 1000);
    }

  $("#js_profile_header_vote_1").click(function(){
    alert("js_profile_header_vote_1 button clicked");
  });

});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<body>
<span class="b-link js-profile-header-vote" id = "js_profile_header_vote_1" data-choice="yes"></span>
  </body>
&#13;
&#13;
&#13;