联系官方销售客服

1835022288

028-61286886

POSCMS 版主:POSCMS负责人
想要实现一个按钮字段实现点击一次增加一个麻烦问下大神怎们写
类型:POSCMS 更新时间:2020-03-29 10:35:54 字段

想要实现一个按钮字段,实现点击一次增加一个,麻烦问下大神怎们写

$(function(){
   $("#点击加1").click(function(){ 
   dr_show_hits($id);
   });

回帖
  • 靠悬赏赚钱买授权
    #1楼    靠悬赏赚钱买授权
    2020-03-29 10:32:49
    Chrome 0
    肯定不能这么写啊,dr_show_hits是php函数啊,你要把dr_show_hits的js拿出来放到js函数里面
  • 琉惗
    #2楼    琉惗
    2020-03-29 10:35:13
    Chrome 0
     <li onclick="hits('huaquan')">
    function hits(data){
    	$.ajax({
    		type: "POST",
    		url: "/index.php?s=photo&c=home&m=hits&id="+{$id}+"&type="+data,
    		success: function(data){
    			
    		},
    		error: function(data){
    			
    		}
    	})
    }
    public function hits(){
    		$id = $this->input->get('id', true);
    		$type = $this->input->get('type', true);
    		
    		$hits = $this->db->select('huaquan')->where('id',$id)->get(SITE_ID.'_photo')->result_array();
    		$huaquan = $hits[0]['huaquan']+1;
    
    		$result = $this->db->where('id', $id)->update(SITE_ID.'_photo', ['huaquan'=>$huaquan]);
    
    		if($result){
    			return json_decode(['code'=>1]);
    		}else{
    			return json_decode(['code'=>0]);
    		}
    
    		
    	}
    满意答案
  • 湘西北的风
    #3楼    湘西北的风
    2020-03-29 10:35:54
    Chrome 0
    @琉惗:感谢大神