phpcms中pc模板中跳转页面
发布:smiling 来源: PHP粉丝网 添加日期:2015-12-07 15:08:18 浏览: 评论:0
phpcms中pc模板中跳转页面非常的简单了,只要知道url就可以了,下面我们一起来看一个例子吧.
今天在改的网页中有需要填加一个链接,因为之前该页面在之前已经有设置链接跳转到不同的页面,而且这些链接是通过模板循环出来的,如果我再加一个不是通过循环出来的链接就会与原来设置的样式有冲突,所以我准备用一个div来模仿a标签,实现跳转页面的功能,具体实现如下:
- <div class="department-detail">
- <div style="clear:both;display:block;margin-left:352px;margin-top:0;width:864px;height:106px;cursor:pointer;" onclick="window.location.href='{$CATEGORYS[33][url]}'"></div>
- {pc:content action="category" catid="7" num="12" siteid="$siteid" order="listorder ASC"}
- //phpfensi.com
- {loop $data $r}
- {if $r[catid]==23 }
- <a style="width:90px;margin-right:0;" href="{$r[url]}"></a>
- {/if}
- <a href="{$r[url]}"></a>
- {/loop}
- {/pc}
- </div>
Tags: phpcms模板 pc模板跳转
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)