JavaScript语法使用外部脚本时出错

时间:2017-03-16 21:31:36

标签: javascript

我有一个名为custom.js的文件,我只是把

<script src="custom.js"></script>

在所需的位置,但我一直在控制台中获取语法。

$(document).ready(function() {
    var m = document.getElementById('customprofile');
var str = "index.php?/profile/1-brandon/";
     if(window.location.href.includes(str)){

        document.getElementsByTagName("html")[0].setAttribute("class", "none");
        $("body").css({
            "background-color": "#FFFFFF",
        });
        document.getElementById("elProfileTabs_content").style.backgroundColor = "rgba(13, 13, 13, .9)", 
        document.body.style.backgroundImage = "url('https://encrypted-tbn0.gstatic.com/images?      q=tbn:ANd9GcSApUa6V0POxeHbBFzjjtsLhicnFKbQzJgXQgGcHJ_iXu4p8dhHIw')";
    document.body.style.backgroundSize = "15%";
     }

}

1 个答案:

答案 0 :(得分:1)

我认为您在最后);之后错过}以关闭.ready功能。