2012-12-17から1日間の記事一覧

チェックボックスがオンになったら入力できる

checkboxにチェックが入ったら、別のformフィールドに入力できるようにする仕掛け $("#moved_flag").click(function(){ if (this.checked){ $("#moved").attr("disabled", false); }else{ $("#moved").attr("disabled", true); } });「this.checked」でチェ…