How To Create A Dialog With “yes” And “no” Options In JavaScript?
Có thể bạn quan tâm
- Home
- Whiteboard
- Online Compilers
- Practice
- Articles
- AI Assistant
- Jobs
- Tools
- Corporate Training
- Courses
- Certifications
- Switch theme
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
No, you cannot create a dialog box with “yes” or “no”. A confirmation dialog box in JavaScript has “Ok” and “Cancel” button.
To create a dialog with “yes” or “nor”, use a custom dialog box.
Example
Live Demo
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> function functionConfirm(msg, myYes, myNo) { var confirmBox = $("#confirm"); confirmBox.find(".message").text(msg); confirmBox.find(".yes,.no").unbind().click(function() { confirmBox.hide(); }); confirmBox.find(".yes").click(myYes); confirmBox.find(".no").click(myNo); confirmBox.show(); } </script> <style> #confirm { display: none; background-color: #91FF00; border: 1px solid #aaa; position: fixed; width: 250px; left: 50%; margin-left: -100px; padding: 6px 8px 8px; box-sizing: border-box; text-align: center; } #confirm button { background-color: #48E5DA; display: inline-block; border-radius: 5px; border: 1px solid #aaa; padding: 5px; text-align: center; width: 80px; cursor: pointer; } #confirm .message { text-align: left; } </style> </head> <body> <div id="confirm"> <div class="message"></div> <button class="yes">Yes</button> <button class="no">No</button> </div> <button onclick = 'functionConfirm("Do you like Football?", function yes() { alert("Yes") }, function no() { alert("no") });'>submit</button> </body> </html>Click here to download the project code
Anvi Jain Updated on: 2019-07-30T22:30:21+05:30 3K+ Views
Kickstart Your Career
Get certified by completing the course
Get StartedTừ khóa » Html Javascript Message Box Yes No
-
JavaScript - Create Confirmation Box With Yes And No Options
-
Window Confirm() Method - W3Schools
-
How To Create A Dialog With “Ok” And “Cancel” Options - Stack Overflow
-
Confirm Yes Or No With JavaScript - Code Tutsplus
-
Alert Yes No With The Confirm() Function In JavaScript | Delft Stack
-
Confirm Box In JavaScript With Yes No Option - Tutorial - By EyeHunts
-
Javascript Yes No Alert Box Code Example
-
Html Alert Yes No Code Example
-
Confirmation Box With Yes Or No Button In JavaScript
-
Java Script Alert Yes No - How To Create A Dialog With ... - Pakainfo
-
JavaScript Message Boxes: Alert(), Confirm(), Prompt()
-
nfirm() - Web APIs - MDN Web Docs
-
How To Alert In JavaScript With Yes / No - YouTube
-
Messagebox Of Yes/No Using Javascript - MSDN - Microsoft