WordPress jQuery错误:“未捕获的TypeError:无法设置null的属性'值'”

时间:2011-02-01 22:54:15

标签: jquery wordpress wordpress-plugin galleria

我已经搜索了一系列切向相关的问题,但不准确,所以这里有:

我一直在开发一个网站(不幸的是)在WordPress中使用三个不同的jQuery插件(索引上的图像轮播,Portfolio页面上的图像库插件“Galleria”,联系我们页面上的自定义联系表7 )。

在一些帮助下,我已经能够消除因此而导致的大部分错误,但我现在离开了最后一个错误:

  

未捕获的TypeError:无法设置null

的属性“value”

我已将事情分开,以便在header.php中调用以下内容:

    <link href="http://www.cypresshilldevelopment.com/wp-content/themes/CHD2/galleria.css" rel="stylesheet" type="text/css" media="screen, print"/> 

然后在footer.php中调用其余部分:

<script type="text/javascript" src="http://www.cypresshilldevelopment.com/wp-content/themes/CHD2/galleria_wp/js/jquery.galleria.js"></script> 
<script type="text/javascript"> 
    $ = jQuery;
    $(function(){ $('ul.gallery').galleria({tempClass: 'active', thumbnail_caption: ''}); })
</script>

    <!-- script for jQuery image carousel -->
    <script type="text/javascript" src="/wp-content/themes/CHD2/js/jquery.cycle.all.min.js"></script> 
    <script type="text/javascript" src="/wp-content/themes/CHD2/js/jquery.easing.compatibility.js"></script> 
    <script type="text/javascript" src="/wp-content/themes/CHD2/js/jquery.easing.1.3.js"></script>

    <script type="text/javascript" src="/wp-content/themes/CHD2/js/app.js"></script>
    <!--[if lte IE 6]>
        <script type="text/javascript" src="supersleight-min.js"></script>
    <![endif]-->

我在这里做错了什么?我错误地拆分了代码吗?错误指向WordPress为定义wphc_value的值的页面生成的代码中的一行,但对于我的生活,我无法在任何php或js中找到对“wphc”的任何引用正在使用的文件。

1 个答案:

答案 0 :(得分:0)

不知道这是否是错误消息的原因,但您需要在初始化之前为Galleria加载主题(loadTheme)。

http://galleria.aino.se/docs/1.2/getting_started/beginners_guide/

另外,不知道为什么你有$ = jQuery;,你可能不需要它。