我有这个网址:example.com/index.html#tab-1
我按照 url example.com/index.html#tab-1写入浏览器并按 Enter - 页面将不会加载。
我想获取参数tab1并加载id为tab1的内容。
我的代码:
我称之为函数:
//to load
showTabContent(gethash);
showTabContent: function(id)
{
if(id != null)
{
var tabid = id.split("-");
$("#tab"+tabid[1]).show();
}
},
gethash: function()
{
var hash = window.location.hash;
if($.trim(hash) != "") return hash;
else return null;
}