作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经尝试了下面的代码,但它不起作用......我在另一个项目中使用下面的代码并且它可以工作,但是当我在 wordpress 中使用代码时它不起作用...
jQuery(function ($) {
var pathname = location.href;
if (pathname === "http://wwww.findx.se/?page_id=10") {
$('.xoxo').css({
display: 'none'
});
$('div#footer').css({
display: 'none'
});
}
if (pathname === "http://www.findx.se/?page_id=9") {
$('.xoxo').css({
display: 'none'
});
$('div#footer').css({
display: 'none'
});
}
if (pathname === "http://www.findx.se/?page_id=8") {
$('.xoxo').css({
display: 'none'
});
$('div#footer').css({
display: 'none'
});
$('#header').hide();
}
});
最佳答案
一般来说,WordPress 会在 body 标签中添加一个类,允许您按页面进行选择。例如,对于您的第一条规则,您可以在 CSS 中执行
.page-id-10 .xoxo {
display:none;
}
检查您想要更改的页面上的正文标记,以了解您可以使用哪些类。您还可以在 jQuery 选择中使用它
关于javascript - 如何在wordpress中定位当前页面并更改css?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17862882/
我是一名优秀的程序员,十分优秀!