Config是WAMP + CodeIgniter。
我正在尝试在我的视图中使用jQuery样式表。但相对文件夹不起作用。
<link rel="stylesheet" type="text/css" href="views/style/themes/smoothness/jquery-ui.css"/>
我的目录结构是
htdocs
application
views\style\themes\smoothness
system
在html源代码中创建的样式表的链接是
localhost/instantCheckController/views/style/themes/smoothness/jquery-ui.css
为什么控制器名称会以样式表网址为前缀?
但是,将绝对Web路径的相对路径替换为jquery-ui.css,并且应用样式表。
我想使用本地样式表文件的相对路径而不是web路径。我的相对路径有什么问题?
答案 0 :(得分:0)
使用它:
echo link_tag('views/style/themes/smoothness/jquery-ui.css');