首页 > 开发 > JS > 正文

Jquery Toast Plugin如何禁用进度条?

2017-09-05 12:21:21  来源:网友分享

如图所示,toast弹框会显示一个进度条,如何在toast插件配置中禁用这个进度条?

Jquery Toast Plugin文档

解决方案

相信我,只要这么做。修改下面这个配置

hideAfter: false

源代码为证:

canAutoHide: function () {  return ( this.options.hideAfter !== false ) && !isNaN( parseInt( this.options.hideAfter, 10 ) );},processLoader: function () {  // Show the loader only, if auto-hide is on and loader is demanded  if (!this.canAutoHide() || this.options.loader === false) {    return false;  }  .......