1234567891011121314151617181920212223 |
- function msgbox(content) {
- $.uiAlert({
- textHead: "Info",
- text: content,
- bgcolor: '#19c3aa',
- textcolor: '#fff',
- position: 'top-right',
- icon: 'checkmark box',
- time: 3
- });
- }
- function errmsg(content) {
- $.uiAlert({
- textHead: "Error",
- text: content,
- bgcolor: '#DB2828',
- textcolor: '#fff',
- position: 'top-right',
- icon: 'remove circle',
- time: 3,
- })
- }
|