获取URL后面锚点ID的方法依然很简单,一行代码搞定。
var thisId = window.location.hash;
如何运用获取到的ID:
例如:对URL后面锚点的ID添加样式(.uw3c):
$(function(){
if(thisId != "" && thisId != undefined){
$(thisId).addClass("uw3c");
}
})
!评论内容需包含中文