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.
他の 3 つのボタンを非表示にする必要があるボタンのいずれかをクリックすると、スクリプトで 4 つのボタンを使用します。jqueryまたはjavascriptでこれを解決するように提案できますか?
前もって感謝します。
Jquery.hide()を使用する
$('#button1').on('click', function(){ $('#button2').hide(); $('#button3').hide(); $('#button4').hide(); });
私はそれが次のようになるべきだと思います
$('button').click(function(){ $('button').hide(); $(this).show(); });