Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use confirm in javascript

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces how to use confirm in javascript, the article is very detailed, has a certain reference value, interested friends must read it!

In JavaScript, the confirm() method is used to display a specified message and dialog box with OK and cancel, syntax is "confirm(text displayed on dialog box)", when clicking the "OK" button returns true, clicking the "Cancel" button returns false.

Operating environment of this tutorial: Windows 10 system, Javascript version 1.8.5, Dell G3 computer.

What is the use of confirm in JavaScript?

This method is JavaScript's native method for displaying a specified message and dialog box with OK and Cancel (similar to alert()), returning true when OK (or Enter) is clicked, and false when Cancel (or ESC) is clicked.

Confirm test document.getElementById('cfm').onclick = () => { var test = confirm('test'); console.log(test) }

Click OK (or hit Enter) to return true

Click Cancel (or ESC) to return false

The above is "how to use confirm in javascript" all the content of this article, thank you for reading! Hope to share the content to help everyone, more relevant knowledge, welcome to pay attention to the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report