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.
当我单击任何一个按钮时,我在脚本中使用了 4 个按钮,其他三个按钮应该被隐藏。谁能建议我在 jquery 或 javascript 中解决这个问题?
提前致谢。
我想应该是这样的
$('button').click(function(){ $('button').hide(); $(this).show(); });
使用 Jquery.hide()
$('#button1').on('click', function(){ $('#button2').hide(); $('#button3').hide(); $('#button4').hide(); });