情况很简单:我正在使用Bones框架进行Wordpress。如果我把jQuery放在scripts.js文件中,它们运行正常。一切正常。如果尝试加载jQuery调用,如果满足是的,那么没有任何反应。我做错了什么?
的script.js
// Modernizr.load loading the right scripts only if you need them
Modernizr.load([
{
// Let's check something simple
test : Modernizr.borderradius,
// this should then satisfy the yep and load this script
yep : ['libs/jq-desk-calls.js']
}
]);
jQuery(document).ready(function($) {
// if I put the code from jq-desk-calls.js here, it works fine
}
我正在使用一个简单的测试,以确保它应该解雇。但没有任何反应。它调用的文件只是我可以在document.ready调用中使用的代码并且工作正常。是否与从外部文件调用document.ready有关?
JQ-逐calls.js
$(document).ready(function() {
//LOGO ROLL
$('li#menu-item-477').append('<div class="emblemhover"></div>');
}