下面我有一个“按钮”(只是一个带有图标的跨度),它在我的应用程序中创建一个 div 的弹出视图,以允许用户在单独的窗口中比较信息。
但是,我得到和 Asp.Net 错误如下:
* *“/”应用程序中的服务器错误。
无法找到该资源。请求的 URL:/Home/[object Object] **
有没有人知道为什么会发生这种情况?下面是我的代码:
<div class="module_actions">
<div class="actions">
<span class="icon-expand2 pop-out"></span>
</div>
</div>
<script>
$(document).ajaxSuccess(function () {
var Clone =
$(".pop-out").click(function () {
$(this).parents(".module").clone().appendTo("#NewWindow");
});
$(".pop-out").click(function popitup(url) {
LeftPosition = (screen.width) ? (screen.width - 400) / 1 : 0;
TopPosition = (screen.height) ? (screen.height - 700) / 1 : 0;
var sheight = (screen.height) * 0.5;
var swidth = (screen.width) * 0.5;
settings = 'height=' + sheight + ',width=' + swidth + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=yes,resizable=yes,toolbar=no,status=no,menu=no, directories=no,titlebar=no,location=no,addressbar=no'
newwindow = window.open(url, '/Index', settings);
if (window.focus) { newwindow.focus() }
return false;
});
});