2017-03-06 6 views

答えて

1

物事が非常に簡単に取得するように私はjQueryのを含めるようにあなたをお勧めします:)

を次に、あなただけのだろう。

$('.stop').on('click', function() { 
    $('.pause').hide(); // hides a element with the class pause (adds display:none;) 
    $('.play').show(); // reveals a hidden element with class play 
}); 

https://www.w3schools.com/jquery/jquery_get_started.asp

+0

グレートはい、私はこの1つを使用します!ありがとう – Jerome

関連する問題