.*
$(document).ready(function() {
$('#button').on('click', function() {
$('.form-group').removeClass('hide-tab');
$(this).addClass('show-tab');
});
});
答案 0 :(得分:2)
由于您的按钮类型为submit
。因此会发生更改,但会处理一次性表单并重新加载所有内容。这就是你无法看到变化的原因。
使用preventDefault()
,如下所示: -
$(document).ready(function() {
$('#button').on('click', function(e) {
e.preventDefault();
$('.form-group').removeClass('hide-tab'); // remove hide-tab class from all elements having form-group class
$(this).addClass('show-tab'); // this will add class to the button only not to others
});
});