MW211 EXIT

devlog
jQuery/disabled属性の付与
2012年04月02日
disabledにする(無効にする)。
┌──────────────────────────────────────┐
│$(this).attr("disabled", "disabled");                                       │
└──────────────────────────────────────┘

disabledをはずす(有効にする)。
┌──────────────────────────────────────┐
│$(this).removeAttr("disabled");                                             │
└──────────────────────────────────────┘
分類:jQuery