嗨,这是我的第一个问题。所以我是新来的。 当它转到另一个页面时,我试图改变wordpress中div的margin-top。 这是我把它们放在标题中的代码:
<script type="text/javascript">
$("#mycontentdiv").each(function() {
if (this.href == window.location.href) {
$(this).addClass("classmargintop");
}<br>
});
</script>
<?php
if ( is_front_page() != is_page('contact-us')){
echo '<script type="text/javascript">'
, 'thisfunctionofme();'
, '</script>';
}
?>
是我的条件正确吗?我只是将它基于wordpress中的一些代码,而javascript代码我只是在这里看到它。我希望有人可以帮助我。