Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我读了这个链接Loading a partial view in jquery.dialog,但由于我还是新手,我不知道我应该把代码放在哪里。我应该把它放在我的部分视图中还是放在要创建的链接所在的页面上?...
我真的很陌生,真的需要一些帮助。
您需要将加载对话框的脚本放在您将调用局部视图的视图上。
fullview.cshtml(示例视图)
<h1>Some markup goes here</h1> <div id="dialog" title="Create Album" style="overflow: hidden;"> <script type="text/javascript"> $(function () { $('#dialog').dialog({ }); }); </script>