我在css-tricks上问过这个问题,但只有一个我在我的子函数文件中实现的响应,但它仍然不起作用,你可以看到这里的线程:http://css-tricks.com/forums/topic/i-need-help-getting-my-javascript-file-to-work-on-wordpress-through-child-theme/#post-160138
在我的wordpress页面中,您可以在此处看到底部:http://izaguirre.me/contact/ 我在html中有这个:
<div id="myDiv">
These Are Radom Letters To Test The Connection Of the JAVA File DSFDFSFSDFF
</div>
在我的子主题中的myscript.js文件中,我唯一的代码是:
document.getElementById('myDiv').style.background = "black";
但是我没有看到JS工作的反映,因为我在izaguirre.me/contact/页面末尾的示例中没有可见的背景更改?
答案 0 :(得分:0)
你有没有尝试过
<div id="myDiv">
These Are Radom Letters To Test The Connection Of the JAVA File DSFDFSFSDFF
</div>
这个
<script type="text/javascript">
document.getElementById('myDiv').style.background = "black";
</script>
我认为它会奏效。
答案 1 :(得分:0)
无法加载js文件(404)。您已将其上传到子主题的文件夹(http://izaguirre.me/wp-content/themes/selfy-child/myscript.js)
,
但页面实际上尝试从父主题文件夹加载它
(http://izaguirre.me/wp-content/themes/selfy/js/myscript.js)
。