console.log(data)
if (data.code == 1) {
$('.alert').html('操作成功').addClass('alert-success').show().delay(1500).fadeOut();
} else {
$('.alert').html('操作失败').addClass('alert-danger').show().delay(1500).fadeOut();
cancel: {
text: '取消',
btnClass: 'btn-primary'
案例中的alert需引入以下代码
<div class="alert"></div>
<!--放到合适的位置-->
* 弹出式提示框,默认1.2秒自动消失
* @param message 提示信息
* @param style 提示样式,有alert-success、alert-danger、alert-warning、alert-info
* @param time 消失时间
var prompt = function (message, style, time)
style = (style === undefined) ? 'alert-success' : style;
time = (time === undefined) ? 1200 : time;
$('<div>')
.appendTo('body')
.addClass('alert ' + style)
.html(message)
.show()
.delay(time)
.fadeOut();
// 成功提示
var success_prompt = function(message, time)
prompt(message, 'alert-success', time);
// 失败提示
var fail_prompt = function(message, time)
prompt(message, 'alert-danger', time);
// 提醒
var warning_prompt = function(message, time)
prompt(message, 'alert-warning', time);
// 信息提示
var info_prompt = function(message, time)
prompt(message, 'alert-info', time);
需提前引入jquery文件源码https://github.com/craftpip/jquery-confirm文件夹中的dist文件,需引入案例:$.confirm({ title: '确认', content: '确认删除该条数据?', type: 'blue', icon: 'glyphicon glyphico...
jQuery
-confrim基本简单实列
一。 需要引入的文件,下面需要引入的文件中是在模态
框
里需要使用到bootstrap中的类似于图标,布局。。。这些时才需要引入相关的文件,否则不需要引入相关的文件
<!--外部
jQuery
文件-->
<script type="text/
javascript
" src="
jquery
-1.8.2.min.js" ></scr...
【前端】百信银行校园招聘:https://www.nowcoder.com/discuss/112972
【前端】2018.9.29招银网络电话面:https://www.nowcoder.com/discuss/121326
【前端】招银网络科技面...
方案1:官网说要在charles模拟本地数据的时候域名用localhost.charlesproxy.com
打开hosts文件:编辑器打开C:\Windows\System32\drivers\etc下的hosts文件
添加绑定:添加127.0.0.1 localhost.charlesproxy.com
127.0.0.1和指定域名之间是
一个
tab键
修改react项目的默认域名,在react项目的package.json文件中将原来的"start": “react-scrip..