随笔 8-3

sudo apt-get install gcolor2----安装gcolor2
gcolor2  启动
ubuntu-----任务管理器----关闭进程;-----
ps axu | grep php
sudo kill -9 3104
sudo kill -9 2836
ps axu | grep php
sudo kill -9 3149
本地的mysql ,语句和phpmyadmin 中网11位int格式(即时间),插入数据都行;
	但在线上的服务器中不行,会报错-----需要用unix_timestamp();获取当前时间戳;



$.ajax({
type : 'POST',
url : '__URL__/idcard_addcheck',
data : {'idcard':idcard},
dataType : 'json',   
//-------t要大写,否则参数传递过来,解析不了;搞一个小时;!!~~~如果没这个,php处理过的数组没有json_encode都可以传过来,不过php的数组格式,js用不了,
//一般都是把json_encode后的数组处理为js的数组格式;见下面的实例
 success : function(obj){
    alert(obj.errno);
    if(obj.errno==0){
        $('#msg').html(data.msg);
    }else{
        alert(obj.errdesc);
    }
  }
});


//用attr第二次更改会出问题;prop好点;
if(obj.gender === 1){
    $('input[value="-1"]').prop('checked','false');
    $('input[value="1"]').prop('checked','true');
}else if(obj.gender === '-1'){
    $('input[value="1"]').prop('checked','false');
    $('input[value="-1"]').prop('checked','true');
}
        $('#doctor').on('focus',function () {
            var hospital = $.trim($('#hospital').val());
            var doctor_list = new Array();
            $.ajax({
                type:'POST',
                url:'__URL__/get_doctor',
                data:{'hospital':hospital},
                dataType:'json',
                success:function(data){
                    if(data.errno==0){
                        for(var i=0;i


 
  

 
  
 
 

你可能感兴趣的:(linux)