求助:会thinkbox的大神们帮小弟看看啊

浏览:590 发布日期:2013/11/21 分类:求助交流
function queren(){
    $.thinkbox.confirm('确定将此订单设置为"已购车"吗?',
        {
            'cancel' : function(){this.hide();},
            'ok' : function(){
                this.hide();
                $.ajax({
                    type: "get",   
                    url: "{:U('Index/dobuy')}",  
                    data: "buyid="+buyid,   
                    success: function(msg){ 
                    var msg = $.parseJSON(msg);
                    $.thinkbox.success('状态已经修改为"已购车"');
                        $('#infor_tilte_s9').html("<font color='green'>已购车</font>");
                    }
                  });
            },
            'drag' : true,
            'modal' : true
            }
        );
    }
写法有错误吗?点击弹不出对话框
最佳答案
评论( 相关
后面还有条评论,点击查看>>