第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何使用 CodeIgniter 鏈接到頁(yè)面的特定部分

如何使用 CodeIgniter 鏈接到頁(yè)面的特定部分

PHP
弒天下 2022-12-03 11:05:49
我想將我的頁(yè)腳鏈接到其他頁(yè)面的特定部分,但我不知道如何在 CodeIgniter 中執(zhí)行此操作。我知道在本機(jī) php 中我們必須做這樣的事情 <h2>Nosotros</h2> <ul><li><a href="nosotros.php#QuienesSomos"> ?Quiénes Somos?</a></li>在另一個(gè)班級(jí),我們有這個(gè)<div class="present" id="QuienesSomos">我明白,我的問題是,我如何將其實(shí)現(xiàn)到控制器?我的控制器是這個(gè)defined('BASEPATH') OR exit('No direct script access allowed');class nosotros_controller extends CI_Controller{function __construct(){    parent::__construct();}function index(){    $datav["titulopagina"] ="Nosotros";    $this->load->view('includes/header',$datav);    $this->load->view('inicio/banner');    $this->load->view('nosotros/nosotros');    $this->load->view('includes/footer');}}?>
查看完整描述

2 回答

?
呼如林

TA貢獻(xiàn)1798條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以為特定頁(yè)腳制作路線


//inside config/routes.php

$route['footer'] = 'controller/method_name';

//controller

function method_name(){

 $this->load->view('includes/footer');

}

//view 

<a href="<?php echo base_url('auth/logout'); ?>">QuienesSomos</a>


查看完整回答
反對(duì) 回復(fù) 2022-12-03
?
白衣染霜花

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊

將以下代碼放在您的nosotros視圖文件中(nosotros.php 或您要鏈接的其他文件)

<div class="present" id="QuienesSomos">

和以下代碼在您的footer視圖文件 (footer.php)

<a href="nosotros/#QuienesSomos"> ?Quiénes Somos?</a>

nosotros這是(其他)頁(yè)面的控制器路徑

另外,請(qǐng)查看 Views 文檔


查看完整回答
反對(duì) 回復(fù) 2022-12-03
  • 2 回答
  • 0 關(guān)注
  • 112 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)