当前位置: 首页 > 站长资讯 > 正文页面

织梦dedecms标签不能嵌套的2种解决方案

如下标签:nBp网站目录_网站网址收录与提交入口

代码如下:nBp网站目录_网站网址收录与提交入口

{dede:listpagesize=’6′}nBp网站目录_网站网址收录与提交入口

<li><ahref="/plus/jobs.php?lang={dede:global.user_lang/}&jobid=[field:id/]">[field:jobname/]</a></li>nBp网站目录_网站网址收录与提交入口

{/dede:list}nBp网站目录_网站网址收录与提交入口

当运行的时候,发现{dede:global.user_lang/}居然原封不动的被展示了出来而未被解析,我很纳闷,于是去网上搜了有关DEDECMS不能嵌套标签的解决办法,最后找出了两种解决方案。nBp网站目录_网站网址收录与提交入口

方案一:nBp网站目录_网站网址收录与提交入口

代码如下:nBp网站目录_网站网址收录与提交入口

<!–在标签之前,先用JS获取标签中需要得到的内容–>nBp网站目录_网站网址收录与提交入口

<scripttype="text/javascript">nBp网站目录_网站网址收录与提交入口

functionget_user_lang(){nBp网站目录_网站网址收录与提交入口

document.write("{dede:global.user_lang/}");nBp网站目录_网站网址收录与提交入口

}nBp网站目录_网站网址收录与提交入口

</script>nBp网站目录_网站网址收录与提交入口

{dede:listpagesize=’6′}nBp网站目录_网站网址收录与提交入口

<!–然后在标签中调用该JS函数把内容给显示出来–>nBp网站目录_网站网址收录与提交入口

<li><ahref="/plus/jobs.php?lang=<scripttype="text/javascript">get_user_lang();</script>&jobid=[field:id/]">[field:jobname/]</a></li>nBp网站目录_网站网址收录与提交入口

{/dede:list}nBp网站目录_网站网址收录与提交入口

显然,这种办法肯定不是我要的,因为该方法不仅复杂,而且不容易维护,更重要的是与我尽量的坚持行为和结构分离的习惯相悖,于是又在网上搜了搜,结果发现了更加方便的解决办法,即把{dede:global.user_lang/}更改成[field:global.user_lang/]。nBp网站目录_网站网址收录与提交入口

方案二:nBp网站目录_网站网址收录与提交入口

代码如下:nBp网站目录_网站网址收录与提交入口

{dede:listpagesize=’6′}nBp网站目录_网站网址收录与提交入口

<li><ahref="/plus/jobs.php?lang=[field:global.user_lang/]&jobid=[field:id/]">[field:jobname/]</a></li>nBp网站目录_网站网址收录与提交入口

{/dede:list}nBp网站目录_网站网址收录与提交入口

是不是很简单呢,该方法不仅简单,而且容易维护,也符合结构和行为分离的良好习惯,当然,适用其他标签或者在DEDECMS中也是适用的。 nBp网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章