码迷,mamicode.com
首页 > Web开发 > 详细

PHP常规模板引擎中与CSS/JSON冲突的解决

时间:2014-09-25 19:09:37      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   使用   java   ar   strong   sp   

主要针对对象:Smarty/Dwoo

参考:http://developer.51cto.com/art/201009/224929.htm

其实以前都不怎么关注模板引擎,觉得没必要使用。但随着年龄的增加,代码洁癖越来越严重,才开始碰到这个问题。

 

Smarty和CSS/JS的语法存在冲突,因为二者都需要使用大括号{}。虽然可以改Smarty的界定符,但你在一个现存系统中,去修改所有相关代码,是不划算的。

 

1. 避免同时出现

通过外部引用的方式避免。问题是避无所避。所以这种情况只适合少量简单的情况。

 

2. 修改Smarty界定符

 

2. 使用Smarty的literal标记将样式表信息包围起来

bubuko.com,布布扣
<html> 
<head> 
<title>{$title}</title> 
{literal}  
<styletypestyletype="text/css"> 
p{  
margin::2px  
}  
</style> 
{/literal}  
</head> 
bubuko.com,布布扣
bubuko.com,布布扣
<script type="text/javascript">
      function goods_show(id){

<!--{literal}-->

art.dialog.open(url,{id:‘select‘,title:‘的:‘,width:760,height:380,padding: ‘10px‘});

<!--{/literal}--> } </script>
bubuko.com,布布扣

PHP常规模板引擎中与CSS/JSON冲突的解决

标签:style   blog   http   io   使用   java   ar   strong   sp   

原文地址:http://www.cnblogs.com/zhujiasheng/p/3993072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!