Json Object在localhost上运行,但在Bluehost Server上运行

时间:2018-01-17 03:22:26

标签: php jquery json

我有一个php脚本和一个jquery脚本,可以在localhost(WAMP)上运行,但不能在我的bluehost帐户上运行。

如果我在实时服务器上运行相同的文件,则Jquery成功函数将我的json数据返回为null,但在localhost上不是这样。

以下是我的代码:

php代码:

title__container-page

Jquery部分:

<script>
    var checkedValue = "title__container-page";
    var targetModule = document.getElementsByClassName('page-first');

    var checkedArray = checkedValue.split(" ");             

    console.log(checkedArray);

    checkedArray.forEach(function (val, key) {
        if (val === "") {
            checkedArray.splice(key, 1)
        }
        if (checkedArray.length > 0) {
            targetModule[key].id = "column-padding-top";
        }
    }) 
</script>

如前所述,此文件在localhost上运行并相应地显示结果。但它没有显示任何数据但是“无效”。在实时服务器上。

0 个答案:

没有答案