te')); return $arr; } /* 遍历用户所有主题 * @param $uid 用户ID * @param int $page 页数 * @param int $pagesize 每页记录条数 * @param bool $desc 排序方式 TRUE降序 FALSE升序 * @param string $key 返回的数组用那一列的值作为 key * @param array $col 查询哪些列 */ function thread_tid_find_by_uid($uid, $page = 1, $pagesize = 1000, $desc = TRUE, $key = 'tid', $col = array()) { if (empty($uid)) return array(); $orderby = TRUE == $desc ? -1 : 1; $arr = thread_tid__find($cond = array('uid' => $uid), array('tid' => $orderby), $page, $pagesize, $key, $col); return $arr; } // 遍历栏目下tid 支持数组 $fid = array(1,2,3) function thread_tid_find_by_fid($fid, $page = 1, $pagesize = 1000, $desc = TRUE) { if (empty($fid)) return array(); $orderby = TRUE == $desc ? -1 : 1; $arr = thread_tid__find($cond = array('fid' => $fid), array('tid' => $orderby), $page, $pagesize, 'tid', array('tid', 'verify_date')); return $arr; } function thread_tid_delete($tid) { if (empty($tid)) return FALSE; $r = thread_tid__delete(array('tid' => $tid)); return $r; } function thread_tid_count() { $n = thread_tid__count(); return $n; } // 统计用户主题数 大数量下严谨使用非主键统计 function thread_uid_count($uid) { $n = thread_tid__count(array('uid' => $uid)); return $n; } // 统计栏目主题数 大数量下严谨使用非主键统计 function thread_fid_count($fid) { $n = thread_tid__count(array('fid' => $fid)); return $n; } ?>javascript - add custom Class to alert dialog in bootbox bootstrap jquery plugin - Stack Overflow
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - add custom Class to alert dialog in bootbox bootstrap jquery plugin - Stack Overflow

programmeradmin3浏览0评论

I am using Bootbox jquery plugin to show modals.

this is a simple usage of that to show alert dialogs :

bootbox.alert({
     title: 'Message Title',
     message: "this is message Body"
});

This plugin has a className option to add custom Classes to apply to the dialog wrapper created by dialog() method but we can not use it for alert() method.

a way to add custom classes to alert() is use dialog() to create those. but in this case we must create buttons like OK (or Cancel inprompt() method) manually every time that we want an simple Alert that is Is time consuming, like this:

bootbox.dialog({
  message: "I am a custom dialog",
  title: "Custom title",
  buttons: {
    success: {
      label: "Success!",
      className: "btn-success",
      callback: function() {
        Example.show("great success");
      }
    }
});

is there any way to add custom classes to alert boxes via alert() method?

I am using Bootbox jquery plugin to show modals.

this is a simple usage of that to show alert dialogs :

bootbox.alert({
     title: 'Message Title',
     message: "this is message Body"
});

This plugin has a className option to add custom Classes to apply to the dialog wrapper created by dialog() method but we can not use it for alert() method.

a way to add custom classes to alert() is use dialog() to create those. but in this case we must create buttons like OK (or Cancel inprompt() method) manually every time that we want an simple Alert that is Is time consuming, like this:

bootbox.dialog({
  message: "I am a custom dialog",
  title: "Custom title",
  buttons: {
    success: {
      label: "Success!",
      className: "btn-success",
      callback: function() {
        Example.show("great success");
      }
    }
});

is there any way to add custom classes to alert boxes via alert() method?

Share Improve this question edited Jan 14, 2016 at 10:18 Ahmad Badpey asked Jan 14, 2016 at 10:09 Ahmad BadpeyAhmad Badpey 6,61216 gold badges105 silver badges166 bronze badges 1
  • 2 mate i tried className in alert box initialization and it worked fine, here – Siddharth Commented Jan 14, 2016 at 10:25
Add a ment  | 

1 Answer 1

Reset to default 14

Good news! You can set className also with alert (check the snippet).

$(window).ready(function(){
  bootbox.alert({
     title: 'Message Title',
     message: "this is message Body",
     className: "my-popup"
  });
});

$(window).ready(function(){
  bootbox.alert({
     title: 'Message Title',
     message: "this is message Body",
     className: "my-popup"
  });
});
.my-popup .modal-content {
  background: #FAEBD7;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script src="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>

<script src="https://github./makeusabrew/bootbox/releases/download/v4.4.0/bootbox.min.js"></script>

发布评论

评论列表(0)

  1. 暂无评论