我想将我的代码简化为一个完整的步骤函数。由于它具有相同的属性和功能,因此我不知道将其全部合并到一个操作中的调用函数到底是什么。
$('a[data-user="add"]').click(function(event) {
event.preventDefault();
$('.list-unstyled li').removeClass('active');
$('section.col-lg-8').replaceWith(formAdd);
$('.form-custom').load('includes/pages/admin/admin-user-add.php');
subHash = this.hash;
});
$('a[data-user="settings"]').click(function(event) {
event.preventDefault();
$('.list-unstyled li').removeClass('active');
$('section.col-lg-8').replaceWith(formAdd);
$('.form-custom').load('includes/pages/admin/admin-user-settings.php');
subHash = this.hash;
});
我认为用单独的逗号将它包括在内,将是一个好主意,但事实并非如此。它将视图默认为我的第一次加载。