gpt4 book ai didi

javascript - 我如何使用 javascript 创建两个按钮弹出窗口,用户可以在其中输入他们的名字?

转载 作者:行者123 更新时间:2023-12-04 07:58:53 29 4
gpt4 key购买 nike

我的症结是如何创建两个按钮并在 JS 中分别识别它们?
讲师要求在图像中创建两个按钮和两个单击功能。
我的带有脚本标签的 HTML 代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">

<title>Popup Boxes Lesson</title>

<body>
<button onclick="Enter Name">Click here for a popup alert</button>

</body>

<script>
function myFunction() {
alert("Enter your Name");

}
function myFunction(){
alert("Generate Greeting");
}

</script>

</html>

最佳答案

首先创建两个不同名称的不同函数。
然后你可以通过 onclick 使用它们
或者
给他们 id,然后使用 document.getElementById("id") 为其分配点击事件。像这样的东西

<body> 
<button id="foo">Click here for a popup alert</button>
</body>
<script>
document.getElementById('foo').onclick = function(){
prompt('Hello world');
}
</script>

关于javascript - 我如何使用 javascript 创建两个按钮弹出窗口,用户可以在其中输入他们的名字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66568782/

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