Onclick确认不起作用

问题描述:

您好我有这行代码。

onClick="confirm('Are you sure you want to update the database
   to the latest version?')"><li class="navb">Update Version

但即使用户点击取消或没有,问题仍然存在。它仍然会执行该功能。非常感谢我在做错的任何帮助。谢谢

But the problem is even if the user clicks cancel or no. It will still perform the function. Would appreciate any help on what I'm doing wrong. Thanks

您必须使用 return confirm(...)代替只需确认(...)即可使用。

You must use return confirm(...) instead of just confirm(...) for it to work.