单击按钮运行代码

时间:2018-03-10 16:18:41

标签: javascript html

只有点击一个按钮才有可能运行代码?只要不单击按钮,代码就不会运行,但如果单击,代码就会开始运行。

如果单击按钮不起作用,则显示div块,因为代码在后台运行,如果单击该按钮,如果没有。

2 个答案:

答案 0 :(得分:1)

这样可行。



function a() {
alert("Code ran by you on the click");
}

   <button onclick="a();">Button</button>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您的问题非常混乱,但这可能会对您有所帮助:https://www.w3schools.com/jsref/event_onclick.asp

代码:

<!DOCTYPE html>
<html>
<body>
    <button onclick="myFunction()">Click me</button>

    <script>
    function myFunction() {
        alert("Your code is running correctly!");
    }
    </script>
</body>
</html>

希望这会有所帮助;)