$(function () { $('a[data-admin="False"]').hide(); $('#headerDataForm').autoValidate({ sysName: { required: true, maxlength: 50 } }, { button: ['sysSave'] }); $('#footerDataForm').autoValidate({ sysFoot: { required: true, maxlength: 50 } }, { button: ['footSave'] }); var bsa = new BootstrapAdmin({ url: '../api/Profiles', bootstrapTable: null, validateForm: null, modal: null, dataEntity: new DataEntity({ map: { Title: "sysName", Footer: "sysFoot" } }), click: { assign: [{ id: 'sysSave', click: function (row, data) { if ($(this).attr('data-valid') == "true") { Profiles.saveWebSite({ name: '网站标题', code: data.Title, category: '网站设置' }); } } }, { id: 'footSave', click: function (row, data) { if ($(this).attr('data-valid') == "true") { Profiles.saveWebSite({ name: '网站页脚', code: data.Footer, category: '网站设置' }); } } }] } }); var html = '