点击星星如何获得评级值

时间:2012-02-28 10:57:39

标签: javascript jquery

我正在使用jquery评级插件。 在所有示例中,他们都有一个靠近评级星的提交按钮。 所以提交按钮执行this.form.serialize。 但我想在不点击提交按钮的情况下将评级保存到数据库。 我没有向用户提供提交按钮。 如果有人已经这样做了你能帮助我吗? 这些是jquery的例子。

http://www.fyneworks.com/jquery/star-rating/#tab-Testing

1 个答案:

答案 0 :(得分:1)

我看了一下页面的来源,我发现了这个:

 $('.auto-submit-star').rating({
    //called when clicked 
    callback: function(value, link){
       // 'this' is the hidden form element holding the current value
       // 'value' is the value selected
       // 'element' points to the link element that received the click.
       $(this.form).ajaxSubmit();
    }
 }); 

希望这有帮助