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.
在 jQuery 中有一种方法可以像这样选择提交按钮:
$('input[type="submit"]');
纯Javascript中是否有任何等价物?
document.querySelectorAll('input[type="submit"]');
请参阅支持列表、规范和MDN 文档。
……但这并不比使用 jQuery 更“纯 JavaScript”。它避免使用第三方编写的 JavaScript 函数,但仍然使用浏览器提供的 DOM API。
您可以使用:
document.forms["formName"]["nameOfSubmitButton"]
name
document.querySelectorAll