如何在弹出窗口中显示视图

时间:2016-04-30 08:37:13

标签: jquery asp.net-mvc popup

就像我在标题中所说的那样,我想要做的是:当我点击一个链接时,在弹出窗口中显示一个视图! 我已经在弹出窗口中显示了一些文字,但我现在不知道如何在弹出窗口中显示一个视图! 代码:

<script src="~/Scripts/jquery-1.7.1.js"></script>
<script src="~/Scripts/jquery-ui-1.8.20.js"></script>
        

脚本:

{{1}}

1 个答案:

答案 0 :(得分:0)

试试这个

function showPopup() {
            $(document).ready(function() {
                    $("#divContaiPopup").dialog({
                        height:400,
                        width:500,
                        modal:true,
                        buttons:{
                            "OK":function(){
                                $(this).dialog("close");
                                aert('you selected ok!!')
                            },
                            "Cancel":function(){
                                $(this).dialog("close");
                            }
                        }
                    }
                    );
            });
        }

脚本: -

<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>

选中此Link