admin管理员组文章数量:1341893
If I have a simple button in my html:
<button id="bgnBtn">Start Game</button>
and I want a prompt in my JS:
var userAdjective = prompt("Please provide an Adjective");
to initiate only after the button is clicked, how would I write this?
Can't seem to find this concept out there, at least for one so boiled down to basics like this.
Thanks,
If I have a simple button in my html:
<button id="bgnBtn">Start Game</button>
and I want a prompt in my JS:
var userAdjective = prompt("Please provide an Adjective");
to initiate only after the button is clicked, how would I write this?
Can't seem to find this concept out there, at least for one so boiled down to basics like this.
Thanks,
Share Improve this question asked May 17, 2016 at 22:15 jonah butlerjonah butler 781 gold badge2 silver badges8 bronze badges 3- 1 Possible duplicate of addEventListener vs onclick – Mike Cluck Commented May 17, 2016 at 22:19
- There's a lot of questions on this but basically you need to add an event handler. – Mike Cluck Commented May 17, 2016 at 22:20
- If you making s game, you could have an HTML input with display:none; and when click on the start game button you can change visibility and get the user input. Why use this instead of prompt, so you can match the design of the input colour borders etc. if you want this solution am sure the answer is already here in stack. – T04435 Commented May 19, 2016 at 3:23
3 Answers
Reset to default 7Set an onclick handler for the button and then have it trigger a javascript function - note the use of the alert - just to show the functioning of the function:
function promptMe(){
var userAdjective = prompt("Please provide an Adjective");
alert (userAdjective);
}
<button id="bgnBtn" onclick="promptMe()">Start Game</button>
I would remend attaching an event listener to the button in your JS code.
document.querySelector('#bgnBtn').addEventListener('click', function() {
var userAdjective = prompt("Please provide an Adjective");
alert (userAdjective);
}
This example uses an anonymous function for handling the click event. You could also do the following:
document.querySelector('#bgnBtn').addEventListener('click', promptMe);
function promptMe() {
var userAdjective = prompt("Please provide an Adjective");
alert (userAdjective);
}
If you use an alert box it would look like this: Alert me
<script>
function myFunction() {
alert("I am an alert box!");
}
</script>
本文标签: Starting a javascript prompt after a button is clickedStack Overflow
版权声明:本文标题:Starting a javascript prompt after a button is clicked - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743662988a2518259.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论