-4

我在这一行得到一个 Unexpected token { 错误

var isSplash =true;
//------DocReady-------------
--->    $(document).ready{(function()};
 if(location.hash.length == 0)
    location.hash="!/"+$('#content > ul > li').eq(2).attr('id');
4

2 回答 2

4

您不需要将对象传递给准备就绪(或尝试传递它)

你有这个

 $(document).ready{(function()};

你需要这个

 $(document).ready(function() { });
于 2012-08-20T19:50:58.340 回答
0

尝试这个...

var isSplash = true;
$(document).ready(function(){
 if(location.hash.length === 0) {
    location.hash="!/"+$('#content > ul > li').eq(2).attr('id');
 }
});
于 2012-08-20T19:51:39.377 回答