我想发出一个警告,它会点击另一个每秒都没有脚本生成的按钮。到目前为止我已经
了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>
每一秒。
答案 0 :(得分:0)
$(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;