外觀
強制所有 button HTML 元素使用明確的 type 屬性。
button
type
button HTML 元素的 type 屬性預設值為 "submit",這通常不是預期的行為,並可能導致意外的頁面重新載入。
"submit"
此規則的不正確程式碼範例
<button /> <button type="foo" />
此規則的正確程式碼範例
<button type="button" /> <button type="submit" />