ウェブサイトのテストはこちら: http://pomonabeta.comeze.com/
ユーザーがオプションとして要求したスライドショーがあります。スライドショーを非表示または表示するボタンがあります。コードは次のとおりです。
//hiding and showing the slideshow
$('#show_hide_button').click(function(){
$('.fluid_container').slideToggle();
$('#show_hide_button').toggle(
function(){
$('#show_hide_button').text("Show the slideshow");
},
function(){
$('#show_hide_button').text("Hide the slideshow");
});
});
(document).ready が実装されています
スライドショーの非表示と表示が正常に行われます。問題: テキストが「スライドショーを表示」に変わり、その状態のままになります。トグルが正常に動作していないようです。私のコーディングでエラーを見つけることができますか?