我设法创建了一个检测锚链接的条件,但是之后如何将锚链接存储在我的 anchor_num 变量中,以便我可以将使用重定向到特定的 url?
<script type="text/javascript">
$(function(){
if(window.location.hash){
var anchor_num = "anchorString";
window.location = "#"+ anchor_num;
} else
{
//redirect to default page
}
});
</script>