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を使用してXエラーを表示するよりも入力されていない場合のフォーム検証ですが、エラーがフェードインスタイルで表示されるときに追加したいと思います。ありがとう。
function error1(act,txt1){ hideshow1('error1',act); if(txt1) $('#error1').fadeIn('slow', function(txt1){ $(this).html(); }); }
これを試して
function error1(act, txt1) { hideshow1('error1', act); if (txt1) { $('#error1').html(txt1).fadeIn('slow'); } }