我在这一行得到一个 Unexpected token { 错误
var isSplash =true;
//------DocReady-------------
---> $(document).ready{(function()};
if(location.hash.length == 0)
location.hash="!/"+$('#content > ul > li').eq(2).attr('id');
我在这一行得到一个 Unexpected token { 错误
var isSplash =true;
//------DocReady-------------
---> $(document).ready{(function()};
if(location.hash.length == 0)
location.hash="!/"+$('#content > ul > li').eq(2).attr('id');
您不需要将对象传递给准备就绪(或尝试传递它)
你有这个
$(document).ready{(function()};
你需要这个
$(document).ready(function() { });
尝试这个...
var isSplash = true;
$(document).ready(function(){
if(location.hash.length === 0) {
location.hash="!/"+$('#content > ul > li').eq(2).attr('id');
}
});