如何在HTML按钮中自动单击

时间:2018-04-14 06:12:31

标签: javascript html automation click

<h1>Welcome to My Page!</h1>
<h2>My name is Bob.</h2>
<h3>I hope you like it here.</h3>
<embed src="MY WEBSITE LINK" style="width:500px; height: 300px;">
<input type="checkbox" id="btd" onmouseover="myFunction()" onclick="alert('clicked')">

<script>
jQuery(function(){
   jQuery('#btd').click();
});
</script>

我有代码。但没有工作。 http://www.imagebam.com/image/31ac1b820717083

如何自动点击按钮继续,从图像?

1 个答案:

答案 0 :(得分:1)

我们不能在HTML中自动点击,但我们可以调用该按钮用Jquery执行的任何功能。 要使用Jquery代码,您需要将其添加到代码中

<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>

实际上当我们点击任何按钮时,它会调用一个函数,它可能是我们自己的函数,也可能是内置函数。 在这里,Javascript可以轻松调用任何函数,无需任何按钮 喜欢这个

//define the function

function alertsomething(){
  alert("Hey, This is an alert inside that function");
}

//function works when button clicks 
$("#btd").click(function(){
  alertsomething();
})

//function automatically when page loads
$(document).ready(function(){
  alertsomething();
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<button id="btd" >Click me</button>

以下是调用函数的两种方法。一个是当你点击按钮而另一个是你的页面加载时,该功能将自动调用...

由于