-2

我有一个简单的链接列表,因此当单击每个链接时,我应该会弹出一个对话框,其中包含从 DB 获得的更多信息,并作为 json 对象发布回该对话框。

现在的问题是,这个设置可以在我的一台服务器上运行,而不能在另一台服务器上运行。两台服务器都运行 Apache 并且两台服务器总体上非常相似,除了一件事,第一个(工作的)是 VPS,第二个是共享主机,我真的不确定这是否与它有关,但这是唯一让我想到的。

   <head>

<link rel=stylesheet href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/themes/start/jquery-ui.css" type="text/css">
<script type="text/javascript" src="/js/jquery-1.8.2.min.js"></script>
<script>
function user_dialog(a,b){
    "undefined"!=typeof jQuery.ui?($("#dialog").attr("title","Detailed Information").html(a),
    $("#dialog").dialog({
        modal:true,
        width:400,
        buttons: {
            Cancel: function() {
                $(this).dialog("close");
                },
                Download: function(){
                    $(this).dialog("close");
                    window.location=b
                    }
                    }
                    }
                    ))
                    :window.location=b}

function user_notice(a){
    download_link=$(a).attr("href");
    $.ajax({
        type:"POST",
        url:"/includes/json.php",
        data:"action=reminder&thepath="+download_link,
        dataType:"json",
        error:function(){
            window.location=download_link
            },
        success:function(a){
            1==a.status&&user_dialog(a.html,download_link);
            }
            })
            };
</script>



</head>

<body>
<div class="bb_button"><a class="bb_xls" href=" " rel="nofollow" onClick=" user_notice(this,''); return false;">Download Now</a></div>
<div id="dialog" style="display:none;"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<div id="g_plus_message"></div>


<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js?ver=1.10.1"></script>

</body>

非常感谢任何帮助

4

1 回答 1

0

我在我的 json.php 中发现了一个错误。

导致我所有问题的错误是我有以下代码行

header('Status: 403 Forbidden');

感谢安德烈

于 2013-04-15T09:49:35.200 回答