我尝试使用没有冲突的方式修复代码,但它仍然无法在 wordpress 上运行。
更奇怪的是,同样的代码在 jsbin 上运行良好。
http://jsbin.com/egezeg/1/edit
原代码: http ://cloud.github.com/downloads/wduffy/jScroll/jquery.jscroll.js
我也测试过
$j("body").html("1234");
它工作正常。
我在这里想念什么?
我尝试使用没有冲突的方式修复代码,但它仍然无法在 wordpress 上运行。
更奇怪的是,同样的代码在 jsbin 上运行良好。
http://jsbin.com/egezeg/1/edit
原代码: http ://cloud.github.com/downloads/wduffy/jScroll/jquery.jscroll.js
我也测试过
$j("body").html("1234");
它工作正常。
我在这里想念什么?
尝试将这样的内容添加到您的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');