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.
我试图找出哪些 html 元素具有可以通过调用 preventDefault() 来阻止的默认操作。我在规格中找不到它。它在哪里指定?
我不完全确定它是指定的,尽管我想它是;但默认操作似乎来自用户行为/交互;所以经验法则是:“如果用户可以交互并做某事,那么对于这个元素,这个元素/交互可能会有一个默认操作。”
不幸的是,虽然我还不能引用这个假设的来源。
简而言之: preventDefault() 使得如果 javascript 被关闭,将发生的任何操作都被抑制/阻止。
其他答案已经提到了我能提到的所有其他内容。