外观
对所有 button HTML 元素执行显式 type 属性。
button
type
button HTML 元素的 type 属性的默认值是 "submit" ,这通常不是所需的行为,并且可能导致意外的页面重新加载。
"submit"
此规则不正确的代码示例
<button /> <button type="foo" />
此规则正确的代码示例
<button type="button" /> <button type="submit" />