我有一个删除按钮,它与我拥有的页面上的一些评论相关联.当您单击删除按钮时,我试图弹出一个确认对话框,询问您是否确定要删除评论.单击确定"应运行删除评论的功能,单击取消"不应运行该功能而只是关闭对话框.
I have a delete button that is tied to some comments on a page i have. When you click the delete button i am trying to get a confirm dialog box to pop up asking if you are sure you want to delete the comment. Clicking OK should run the function to delete the comment and clicking cancel should not run the function but simply close the dialog box.
这是我的代码:
onclick="confirm('Are you sure that you want to delete this comment?'); commentDelete(1);"
我的问题:当我点击取消删除功能仍然运行.我的猜测是该函数仍在被调用,因为当我单击取消时,它只是在 JavaScript 中前进并调用该函数.我怎样才能正确地做到这一点?我知道这可能是一个简单的问题.感谢您的帮助!
My problem: When i click cancel the delete function still runs. My guess is that the function is still getting called because when i click cancel it just is stepping forward in the JavaScript and calling the function. How can i accomplish this correctly? I know this is probably a simple problem. Thanks for any help!
onclick="if (confirm('Are you...?')) commentDelete(1); return false"
您缺少 if.在您的版本中,首先您会收到一个问题,然后无论答案如何,您都会调用 commentDelete.
You are missing an if. In your version, first you get a question, and then regardless of the answer, you call commentDelete.
这篇关于JavaScript 确认取消按钮不停止 JavaScript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
在 Angular 2/Typescript 中使用 IScrollUse IScroll in Angular 2 / Typescript(在 Angular 2/Typescript 中使用 IScroll)
Anime.js 在 Ionic 3 项目中不起作用anime.js not working in Ionic 3 project(Anime.js 在 Ionic 3 项目中不起作用)
Ionic 3 - 使用异步数据更新 ObservableIonic 3 - Update Observable with Asynchronous Data(Ionic 3 - 使用异步数据更新 Observable)
Angular 2:在本地 .json 文件中找不到文件Angular 2: file not found on local .json file(Angular 2:在本地 .json 文件中找不到文件)
在 Ionic 2 中,如何创建使用 Ionic 组件的自定义指In Ionic 2, how do I create a custom directive that uses Ionic components?(在 Ionic 2 中,如何创建使用 Ionic 组件的自定义指令?)
将 ViewChild 用于动态元素 - Angular 2 &离子2Use ViewChild for dynamic elements - Angular 2 amp; ionic 2(将 ViewChild 用于动态元素 - Angular 2 amp;离子2)