2016-09-07 123 views
-1

我是Codeigniter的新手,點擊編輯按鈕時出現問題,表單編輯無法彈出。我不知道如何模式popup,以便它可以正常工作。如何配置控制器?如何在代碼編輯器中彈出jquery窗體編輯

我控制器

public function edit() 
{ 
    $id=$this->uri->segment(3); 
    $this->load->model('m_activity'); 
    $data['data']=$this->m_activity->per_id($id); 

} 

我的模型

function per_id($id) 
{ 
    $this->db->where('activity_detail_id',$id); 
    $query=$this->db->get('t_trx_activity_detail'); 
    return $query->result(); 
} 

我看來

<a href='<?php echo site_url();?>activity/edit/<?php echo 
             $row->activity_detail_id;?>'class="btn btn-outline btn-circle btn-sm purple" data-toggle="modal" > 
          <i class="fa fa-edit"></i> Edit </a> | 

<div class="modal fade left" id="edit"> 
+0

你問的jQuery但不包括在任何問題jQuery代碼。如果這只是一個關於如何使用PHP來構造某個URL的問題,那麼這也與jQuery無關。請更好地解釋你想要完成的事情。 – Sparky

回答

0

有這麼多的jQuery庫在那裏。其中之一是JQuery UI。你可以使用它的對話框。

Reference

EX:

<!doctype html> 
<html lang="en"> 
<head> 
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <title>jQuery UI Dialog - Default functionality</title> 
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css"> 
    <link rel="stylesheet" href="/resources/demos/style.css"> 
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script> 
    <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script> 
    <script> 
    $(function() { 
    $("#dialog").dialog(); 
    }); 
    </script> 
</head> 
<body> 

<div id="dialog" title="Basic dialog"> 
    <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p> 
</div> 


</body> 
</html> 
+0

我的問題,當我點擊編輯按鈕,其中編輯窗體有記錄database.not空白 –