您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

main.js 568B

1234567891011121314151617
  1. $(document).ready(function() {
  2. $('#settingsForm').submit(function(event) {
  3. event.preventDefault();
  4. $.post("ajax/saveSettings.php", $("#settingsForm").serialize(), function(data) {
  5. $(".result").html(data);
  6. }).success(function(e) {
  7. $.bigBox({
  8. title: "Änderung erfolgreich",
  9. content: "Die Einstellungen zur Landingpage wurden übernommen.",
  10. color: "#739E73",
  11. icon: "fa fa-check",
  12. timeout: 5000
  13. });
  14. });
  15. });
  16. });