Jquery 对话框在 IIS 服务器上不起作用,但在我的本地机器上,下面的代码工作正常。在服务器中,映射的 url 不起作用,它会抛出类似“404 resource is not found”的错误。
jQuery代码
$('#new dialog')dialog({
auto-open: false,
width: 345,
top: 76,
re sizable: false,
title: 'Add Ad Details',
modal: true,
open: function (event, ui) {
$(this)load("../Ad/ad Manage?atype=" + adtype);
},
buttons: false,
position: {
my: 'top',
at: 'top',
of: $('.maindiv')
}
});
//---------------------------------
$('.clk')click(function () {
$('body,HTML').addClass('hide scrolls');
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
idimg = $(this).attr('id');
$('#dialog').dialog('open');
});
$('.tp').click(function () {
$('body,html').addClass('hidescrolls');
$.ajaxSetup({
// Disable caching of AJAX responses */
cache: false
});
adtype = $(this).attr('id');
$('#newdialog').dialog('open');
});
上面的代码在我的本地机器上工作,但在服务器上它不工作,我收到类似“找不到资源错误”的错误,你能告诉我在上面的代码参考中我需要在哪里更改吗?