我怎样才能在codeigniter中打开thickbox

发布于 2024-12-09 17:54:43 字数 109 浏览 0 评论 0原文

我需要在控制器或模型内的 codeigniter 中打开厚盒。 如何在控制器或模型内部编写。

结果将来自模型,所以我需要像这样在厚盒中显示结果。请提出任何解决方案。

谢谢

I need to open thickbox in codeigniter inside controller or model.
How to write there inside controller or model.

the result will be coming from model, so i need to show the result in the thickbox like that. Please suggest any solution.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手长情犹 2024-12-16 17:54:43

控制器:
if ( ! Defined('BASEPATH')) exit('不允许直接脚本访问');

class Thickbox extends CI_Controller {



    public function __construct() {



        parent::__construct();

        $this->load->helper('url');

        //load ci url helper

    }



    public function index()

    {

        $this->load->view('thickbox_view');

        //load views 

    }

}



/* End of file thickbox.php */

/* Location: ./application/controllers/thickbox.php */

看法:

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Untitled Document</title>

<script type="text/javascript" src="js/jquery.js"></script>

<script type="text/javascript" src="js/thickbox.js"></script>

<style type="text/css" media="all">

@import "css/thickbox.css";

</style>

</head>



<body>

<a href="/images/single.jpg" title="add a caption to title attribute / or leave blank" class="thickbox"><img src="/images/single_t.jpg" alt="Single Image"/></a>

</body>

</html>

有关更多信息,请访问:bugphp.com 或单击此处 实施Codeigniter 中的 ThickBox

controller:
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Thickbox extends CI_Controller {



    public function __construct() {



        parent::__construct();

        $this->load->helper('url');

        //load ci url helper

    }



    public function index()

    {

        $this->load->view('thickbox_view');

        //load views 

    }

}



/* End of file thickbox.php */

/* Location: ./application/controllers/thickbox.php */

view:

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Untitled Document</title>

<script type="text/javascript" src="js/jquery.js"></script>

<script type="text/javascript" src="js/thickbox.js"></script>

<style type="text/css" media="all">

@import "css/thickbox.css";

</style>

</head>



<body>

<a href="/images/single.jpg" title="add a caption to title attribute / or leave blank" class="thickbox"><img src="/images/single_t.jpg" alt="Single Image"/></a>

</body>

</html>

for more information visit: bugphp.com or click here Implement ThickBox in Codeigniter

圈圈圆圆圈圈 2024-12-16 17:54:43

您需要先学习并理解MVC。
您无法在模型或控制器中“打开”它,您应该在视图中执行此操作。
在模型中,您加载数据,在控制器中分配数据,在视图中,您将“回显”数据。

但这是非常简单的事情,与 codeigniter 无关(它与普通的 php 和/或 html 相同)。
也许您可以向我们展示您的代码到目前为止您做了什么。

You need to learn and understand MVC first.
You can't "open" it in model or controller, you should do this in your view.
In model you load the data, in controller you asign it and in view, you will "echo" the data.

But this is really simple thing and has nothing to do with codeigniter (it is the same like in ordinary php and/or html).
Maybe you can show us your code what have you done so far.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文