此脚本非常适合将“罪犯”类添加到此页面的名为“h1_wrapper”的div中:
if(window.location.pathname == '/Criminal-Law-Blog') {$( ".h1_wrapper" ).addClass( "criminal" );
当我点击特定博客条目时,它会添加到路径名;例如:
/刑事律-博客/ 2014/11 /刑事律-博客试验条目1
如何编辑代码以便将类添加到“/ Criminal-Law-Blog”后面的任何路径?我知道这可能很容易,但我无法理解它!
提前致谢!
答案 0 :(得分:2)
最简单的方法是window.location.pathname.match(/^\/Criminal-Law-Blog/)