1

目前我尝试将以下星级插件添加到我的 wordpress 博客:FYNEWORKS

但由于某种原因,我似乎没有工作。我对 jQuery 完全陌生,所以希望你能帮助我。

添加到标题:

    <script type="text/javascript" src="/wp-content/themes/wordpress-naked/js/jquery.js"/>
    <script type="text/javascript" src="/wp-content/themes/wordpress-naked/js/jquery.rating.js"/>
    <script type="text/javascript" src="/wp-content/themes/wordpress-naked/js/jquery.form.js"/>
    <script type="text/javascript" src="/wp-content/themes/wordpress-naked/js/jquery.MetaData.js"/>
    <script type="text/javascript" src="/wp-content/themes/wordpress-naked/js/jquery.rating.pack.js"/>

而且在标题中:

<script type="text/javascript">
jQuery(function($){
    ('.hover-star').rating({ 
        focus: function(value, link){ 
            var tip = $('#hover-test'); 
            tip[0].data = tip[0].data || tip.html(); 
            tip.html(link.title || 'value: '+value); 
        }, 
        blur: function(value, link){ 
            var tip = $('#hover-test'); 
            $('#hover-test').html(tip[0].data || ''); 
        } 
     });
});
</script>

我的 CSS 文件:

/* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */
div.rating-cancel,div.star-rating{float:left;width:17px;height:15px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden;}
div.rating-cancel,div.rating-cancel a{background:url("/wp-content/themes/wordpress-naked/js/delete.gif") no-repeat 0 -16px; !important}
div.star,div.star a{background:url("/wp-content/themes/wordpress-naked/js/star.gif") no-repeat 0 0px; !important}
div.rating-cancel a,div.star-rating a{display:block;width:16px;height:100%;background-position:0 0px;border:0 !important;}
div.star-rating-on a{background-position:0 -16px!important;}
div.star-rating-hover a{background-position:0 -32px;}
/* Read Only CSS */
div.star-rating-readonly a{cursor:default !important;}
/* Partial Star CSS */
div.star-rating{background:transparent!important;overflow:hidden!important;}
/* END jQuery.Rating Plugin CSS */

我的单选按钮具有第二个代码部分“.hover-star”中定义的类。

但是,它仍然无法正常工作。我打错字还是忽略了什么?

谢谢 :)

4

2 回答 2

0

您的脚本应该几乎总是在文档完全加载后启动,否则它会执行得太早并且找不到项目。

$(document).ready(function() { ... // your code // ... })

关于丢失的 $, wirey也是正确的

于 2012-12-03T20:04:15.513 回答
0

首先,您没有在这里调用 jQuery:

('.hover-star').rating({

$您需要使用or调用 jQuery jQuery

$('.hover-star').rating({

可能还有其他问题。我建议使用调试器。这将有助于找到这个问题和其他问题。

于 2012-12-03T20:05:23.780 回答