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
}
);
}写法有错误吗?点击弹不出对话框 最佳答案