alert.js 471 B

1234567891011121314151617181920212223
  1. function msgbox(content) {
  2. $.uiAlert({
  3. textHead: "Info",
  4. text: content,
  5. bgcolor: '#19c3aa',
  6. textcolor: '#fff',
  7. position: 'top-right',
  8. icon: 'checkmark box',
  9. time: 3
  10. });
  11. }
  12. function errmsg(content) {
  13. $.uiAlert({
  14. textHead: "Error",
  15. text: content,
  16. bgcolor: '#DB2828',
  17. textcolor: '#fff',
  18. position: 'top-right',
  19. icon: 'remove circle',
  20. time: 3,
  21. })
  22. }