Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Firefox 浏览器中使用 jQuery 1.4.2.min.js。如果我按下回车键,它会导航到下一个字段,但不会显示模糊事件警报。这导致了问题,因为在 Tab 键上,会显示模糊事件中指定的这些消息。有什么解决办法吗
您可能会返回 false 或阻止默认值。在检查回车键的代码中查找以下一行或多行:
e.preventDefault(); e.stopPropagation(); e.stopImmediatePropagation();
如果您不知道如何修复它,请发布相关代码。