我尝试使用没有冲突来修复代码,但它仍然无法在wordpress上运行。
甚至更奇怪的是,同样的代码在jsbin上运行良好。
http://jsbin.com/egezeg/1/edit
原始代码: http://cloud.github.com/downloads/wduffy/jScroll/jquery.jscroll.js
我也测试了
$j("body").html("1234");
它运作正常。
我在这里缺少什么?
答案 0 :(得分:0)
尝试在你的functions.php中添加这样的东西:
//ad our custom Jquery
function my_init() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js', false, '1.8.2', true);
wp_enqueue_script('jquery');
// load a JS file from your theme: js/theme.js
wp_enqueue_script('myscript', get_template_directory_uri() . '/js/myscript.js', array('jquery'), '1.0', true);
}
}
add_action('init', 'my_init');