I have written the following code for identifying the current page and marking it accordingly in the navigation bar. It works perfectly, except for the first time index.php is loaded (the code is located at the end of header.php file:
path = location.pathname.split("/");
pathname= "#header_nav li a[href='" + path[(path.length-1)] + "']";
$(pathname).attr("id","current");
any ideas?
以上就是JavaScript current page identification的详细内容,更多请关注web前端其它相关文章!