码迷,mamicode.com
首页 > 其他好文 > 详细

弹出提示信息

时间:2015-11-20 15:21:49      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

方案一:

if (string.IsNullOrEmpty(hlApplyName.Text)) { Response.Write("<script>parent.funTips(‘请输入申请人!‘)</script>"); return; }

function funTips(strResult) {
    $.messager.alert("消息框", strResult);
    if (strResult == "该批次已被使用,不可编辑!") {
        $("#mm").window("close");
    }
}

 

方案二:

Response.Write("<script>parent.funSave(‘#lstData‘,‘数据操作成功!‘)</script>");

function funSave(ele, strResult) {
    $("#mm").window("close");
    $(ele).datagrid("load");
    $.messager.alert("消息框", strResult);
}

 

方案三:

 Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>alert(‘用户名或密码错误!‘)</script>");

 

弹出提示信息

标签:

原文地址:http://www.cnblogs.com/sll-fuling/p/4980840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!