jQuery ui工具提示与ajax调用无法正常工作

时间:2013-07-04 09:10:59

标签: jquery ajax tooltip

当前两位用户添加评论时,我在确认按钮上显示了工具提示的代码:

        $("#confirm").tooltip({
                    content: function(){
                                $.ajax({
                                    type: 'POST',
                                    url: '/comments/numUsers.json', 
                                    data: {draw_id : $("#PostId").attr('value')},
                                    dataType: 'json',
                                    success: function(data){

                                        onSuccess(data);

                                     },
                                    error: function(){
                                        return false;
                                    }

                                });

                                function onSuccess(data){
                                    if (data < 2){
                                        if(data == 0){
                                            return "You're the first user";
                                        }
                                        else{
                                            return "You're the second user";
                                        }

                                    }
                                    else{
                                        return false;
                                    }

                                }

                    }
                });

numUsers.json返回已在帖子上发表评论的用户数。 ajax调用工作广告“onSuccess”函数被正确调用,但我的按钮上没有显示工具提示:-(任何建议?thx提前

0 个答案:

没有答案