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

ligerDialog的使用

时间:2016-07-15 19:34:19      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:

1.通过ViewBag来传值。

   @if (ViewBag.ReturnMessage != null)

2.脚本代码:

对话框设计与赋值问题。

<script type="text/javascript">
    $(function () {
        if (document.getElementById("dialog-BorrowInformation") != null) {
            $.ligerDialog.open({
                target: $("#dialog-BorrowInformation"),
                title: 温馨提示:“您有借款未还清,是否确定不冲账,继续提交。,
                height: 380, width: 840,
                buttons: [
                    { text: 继续提交, onclick: function (item, dialog) { $("#IsHintBorrowInformationCheck").val(true); $("#submitZD").click(); dialog.hide(); } },
                    { text: 取消, onclick: function (item, dialog) { dialog.hide(); } }
                ],
                isResize: true 
            });
        }
        if (document.getElementById("dialog-radioHintOfficialCardDeadlineMessage") != null) {
            $.ligerDialog.open({ target: $("#dialog-radioHintOfficialCardDeadlineMessage"), title: 警告, height: 200, width: 450, buttons: [{ text: 继续提交, onclick: function (item, dialog) { $("#IsHintOfficialCardDeadline").val(true); $("#submitZD").click(); dialog.hide(); } }, { text: 取消, onclick: function (item, dialog) { dialog.hide(); } }], isResize: true });
        }
    });
</script>

 3.动态网页的一些设计

@Html.Raw(@ViewBag.HintOfficialCardDeadlineMessage);
@ViewContext.Writer.Write(rec.Agent);

@ViewContext.Writer.Write(rec.Remark.Substring(0, 8) + "..");

 

ligerDialog的使用

标签:

原文地址:http://www.cnblogs.com/jacketlin/p/5673419.html

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