gpt4 book ai didi

javascript - JavaScript 中的函数调用

转载 作者:行者123 更新时间:2023-11-28 16:40:43 27 4
gpt4 key购买 nike

我很困惑,我似乎无法调用这个简单的 Javascript 函数。谢谢!

 <html>
<head>


<script type="text/javascript">

function increase()
{
alert(" the button was pressed");
}

</script>
</head>

<body>


<form action="Test.html" method="post">

<input type="submit" onclick="increase();" />

</form>

</body>
</html>

最佳答案

很难说你哪里出了问题。看起来你只是定义了一个函数。这将使增加函数在页面加载时运行:

<script type="text/javascript">
function increase() {
alert(" the button was pressed");
}
increase();
</script>

这将在按下按钮时运行该函数。

<script type="text/javascript">
function increase() {
alert(" the button was pressed");
}
</script>
<button onclick="increase()">text</button>

听起来您才刚刚开始,这太棒了。我还建议买一本书。几年前,我读过DOM Scripting杰里米·基思(Jeremy Keith)写的,没关系。另外,尝试在线查找教程。

关于javascript - JavaScript 中的函数调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/842279/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com