我在 wordpress 中工作,我正在使用 jquery 在 body 标记中添加删除类。
我想将“主页”类应用于主页,而对于其他页面,我想将“内页”类应用于正文标签。
以下是我的代码。
$(document).ready(function(){
var loc = window.location.href; // returns the full URL
//alert(loc);
if (loc == "http://n.net/")
{
$('body').removeClass('innerpage').addClass('home');
$('.widget-area').removeAttr('style');
}else {
$('body').removeClass('home').addClass('innerpage');
}
});
但如果网址如下:http ://n.net/?=s