我有一个使用修改过的主题和一些插件的网站。我的js知识一点都不好,所以如果以前出现过这种情况,请接受我的歉意。 http://www.georgvoros.com/
似乎没有任何 js 正在运行,包括滑块、导航下拉菜单和灯箱脚本。我已将 Wordpress 更新为 3.61,将 jQuery 更新为 1.10.2。
我在 Chrome 检查元素窗口中收到以下错误。
Uncaught TypeError: Cannot read property 'msie' of undefined jquery.tools.min.js?ver=1.2.7:13
Uncaught TypeError: Cannot set property 'touchstart' of undefined jquery.mobile.customized.min.js:10
Uncaught TypeError: Object function (b,c,d){var e=b.split(".")[0],f;b=b.split(".")[1];f=e+"-"+b;if(!d){d=c;c=a.Widget}a.expr[":"][f]=function(c){return!!a.data(c,b)};a[e]=a[e]||{};a[e][b]=function(a,b){if(arguments.length){this._createWidget(a,b)}};var g=new c;g.options=a.extend(true,{},g.options);a[e][b].prototype=a.extend(true,g,{namespace:e,widgetName:b,widgetEventPrefix:a[e][b].prototype.widgetEventPrefix||b,widgetBaseClass:f},d);a.widget.bridge(b,a[e][b])} has no method 'extend' jquery-ui.js?ver=3.6.1:539
我已阅读有关“$”变量导致问题的信息,但我不明白我需要在哪里进行更改。
在 head.php 中是以下内容
<script type="text/javascript">
// initialise plugins
jQuery(function(){
// main navigation init
jQuery('ul.sf-menu').superfish({
delay: <?php echo of_get_option('sf_delay'); ?>, // one second delay on mouseout
animation: {opacity:'<?php echo of_get_option('sf_f_animation'); ?>'<?php if (of_get_option('sf_sl_animation')=='show') { ?>,height:'<?php echo of_get_option('sf_sl_animation'); ?>'<?php } ?>}, // fade-in and slide-down animation
speed: '<?php echo of_get_option('sf_speed'); ?>', // faster animation speed
autoArrows: <?php echo of_get_option('sf_arrows'); ?>, // generation of arrow mark-up (for submenu)
dropShadows: false
});
// prettyphoto init
jQuery("a[rel^='prettyPhoto']").prettyPhoto({
animation_speed:'normal',
slideshow:5000,
autoplay_slideshow: false,
overlay_gallery: true
});
// Initialize the gallery
jQuery("#gallery .touch-item").touchTouch();
});
</script>
<script type="text/javascript">
// Init for audiojs
audiojs.events.ready(function() {
var as = audiojs.createAll();
});
// Init for si.files
SI.Files.stylizeAll();
$(function(){
$('.sf-menu > li').append('<span class="bg-menu"></span>');
$('.sf-menu > li:last').addClass('last');
$('.recent-posts.services li:nth-child(3n)').addClass('nomargin');
if ($.browser.msie && $.browser.version < 10) {
jQuery('input[type="submit"], input[type="reset"]').hover(function(){
jQuery(this).addClass('submit-hover')
},
function(){
jQuery(this).removeClass('submit-hover')
});
}
});
jQuery(function() {
$('.right-content-area #widget_search.box h3').each(function(index) {
//get the first word
var firstWord = $(this).text().split(' ')[0];
//wrap it with span
var replaceWord = "<span>" + firstWord + "</span>";
//create new string with span included
var newString = $(this).html().replace(firstWord, replaceWord);
//apply to the divs
$(this).html(newString);
});
});
</script>
在 theme-scripts.php 中是:
<?php
/* Register and load javascript
/*-----------------------------------------------------------------------------------*/
function my_script() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', get_bloginfo('template_url').'/js/jquery-1.10.2.min.js', false, '1.10.2');
wp_enqueue_script('jquery');
wp_enqueue_script('modernizr', get_bloginfo('template_url').'/js/modernizr.js', array('jquery'), '2.6.2');
wp_enqueue_script('superfish', get_bloginfo('template_url').'/js/superfish.js', array('jquery'), '1.7.4');
wp_enqueue_script('easing', get_bloginfo('template_url').'/js/jquery.easing.1.3.js', array('jquery'), '1.3');
wp_enqueue_script('prettyPhoto', get_bloginfo('template_url').'/js/jquery.prettyPhoto.js', array('jquery'), '3.1.5');
wp_enqueue_script('tools', get_bloginfo('template_url').'/js/jquery.tools.min.js', array('jquery'), '1.2.7');
wp_enqueue_script('mobilemenu', get_bloginfo('template_url').'/js/jquery.mobilemenu.js', array('jquery'), '1.1');
wp_enqueue_script('loader', get_bloginfo('template_url').'/js/jquery.loader.js', array('jquery'), '1.0');
wp_enqueue_script('swfobject', get_bloginfo('url').'/wp-includes/js/swfobject.js', array('jquery'), '2.3');
wp_enqueue_script('twitter', get_bloginfo('template_url').'/js/jquery.twitter.js', array('jquery'), '1.0');
wp_enqueue_script('flickr', get_bloginfo('template_url').'/js/jquery.flickrush.js', array('jquery'), '1.0');
wp_enqueue_script('touch', get_bloginfo('template_url').'/js/touchTouch.jquery.js', array('jquery'), '1.0');
wp_enqueue_script('si_files', get_bloginfo('template_url').'/js/si.files.js', array('jquery'), '1.0');
wp_enqueue_script('audiojs', get_bloginfo('template_url').'/js/audiojs/audio.js', array('jquery'), '1.0');
wp_enqueue_script('custom', get_bloginfo('template_url').'/js/custom.js', array('jquery'), '1.0');
wp_enqueue_script('camera', get_bloginfo('template_url').'/js/camera.js', array('jquery'), '1.3.3');
}
}
add_action('init', 'my_script');
/* Register and load admin javascript
/*-----------------------------------------------------------------------------------*/
function tz_admin_js($hook) {
if ($hook == 'post.php' || $hook == 'post-new.php') {
wp_register_script('tz-admin', get_template_directory_uri() . '/js/jquery.custom.admin.js', 'jquery');
wp_enqueue_script('tz-admin');
}
}
add_action('admin_enqueue_scripts','tz_admin_js',10,1);
?>
我也看不到该站点正在加载多个版本的 jQuery。