如何教导用户不要在网络应用程序中双击?

发布于 2024-11-17 04:02:56 字数 1459 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

巷雨优美回忆 2024-11-24 04:02:56

除了第一个选项之外,您提供的所有选项都对用户非常不利。只需忽略双击,用户就会及时意识到只需单击一次就足够了。

All options you present other than the first one are exceedingly user-hostile. Just ignore the double clicks and in time the users will realise that only one suffices.

北座城市 2024-11-24 04:02:56

将按钮的图像替换为灰色的图像(记住预加载它,可能作为精灵与常规按钮图像一起)作为按钮不能被单击多次的指示符,这是足够的用户教育。当然,您应该忽略第二次点击。其他任何事情都会不必要地让您的用户感到困惑,而且没有任何好处。

Replacing the image of the button with a grayed-out one (remember to preload it, maybe as a sprite together with the regular button image) as an indicator that the button cannot be clicked more than once is more than enough user education. Of course, you should ignore the second click. Anything else is unnecessarily confusing your users without any benefit.

弄潮 2024-11-24 04:02:56

我会:

  • 在第一次单击后更改可见状态(某种不显眼的覆盖或“工作”微调器,将光标的 CSS 属性更改为“忙”等)。这样,您就可以向用户提供一些“正在发生某些事情”的指示。
  • 除此之外,忽略对链接的进一步点击,直到操作完成

I would:

  • change the visible state after first click (some kind of unobtrusive overlay or a "working" spinner, change the CSS property of the cursor to "busy" etc). This way, you're providing some indication to the user that "something is happening".
  • In addition to that, ignore further clicks on the link until the action completes
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文