KendoUI消息提示自定义

通过KendoUI和JavaScript,本文展示了如何重写alert()方法以创建自定义的消息提示。内容包括消息提示的自定义实现以及自定义消息模板的完整代码示例。
摘要由CSDN通过智能技术生成

本文结合了kendo ui 实现了js 重写alert()方法,实现自定义消息提示

1.消息提示自定义
html

<p id="noti"></p>

需要引入的js和css

<script src="<%=basePath%>/mobile/js/jquery.min.js"></script>
<script src="<%=basePath%>/mobile/js/kendo.all.min.js"></script>

<link href="<%=basePath%>/mobile/styles/kendo.common.min.css" rel="stylesheet" />
<link href="<%=basePath%>/mobile/styles/kendo.default.min.css" rel="stylesheet" />
<link href="<%=basePath%>/mobile/styles/kendo.mobile.ios.min.css" rel="stylesheet" />

js代码

    window.alert = function(info){
        var noti = $('#noti').kendoNotification({
            position:{
              left: 100,
              top:120
            },
            height: 40,
            autoHideAfter: false,
            button: true,
            stacking: 'down'
       }).data('kendoNotification');
        noti.show(info,'info');
}

效果图如下:这里写图片描述


2.自定义消息模板

    templates: [{
       type: 'gbinfo',
       template: '<div class="gbinfo">提示信息:#=myinfo#</div>'
    }]
    noti.show({myinfo:'展示的信息'}, 'gbinfo');

完整代码如下:

var noti = $('#noti').kendoNotification({
                 position:{
                   left: 10,
                   top: 10
                 },
                 autoHideAfter: 5000,
                 button: true,
                 stacking: 'down',
                 templates: [{
                   type: 'gbinfo',
                   template: '<div class="gbinfo">欢迎访问,#=myinfo#</div>'
                 }]
            }).data('kendoNotification');

//noti.show('提示信息!','success');

noti.show({myinfo:'提示信息!'}, 'gbinfo');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值