84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
这是thinkphp框架下 模板里的if语句
<if condition="$v['id']%2 eq 0"><p class="cg"> <else/><p class="cg2"> </if>
学习是最好的投资!
<else>
缺少<else>,你的代码中有<else/>!没有<else>
格式是对的呀,下面这个是官网的代码,你看下$v['id']有没有值
$v['id']
<if condition="$id lt 5 ">value1 <else /> value2 </if>
public function test(){ $data['id']=2; $this->assign("data",$data); $this->display(); }
<if condition="$data['id']%2 eq 0 ">1 <else /> 2 </if>
运行正确的案例
对于tp框架模板语法错误,可以根据错误提示到Runtime/Cache文件夹对应模块下的php文件内找出错误。这个语法应该没问题吧。
建议直接输出$v['id']%2 的值先看看。既然没报错。那就不是语法的错误。
你要实现的是偶数项变色或者其他样式吧 根本不用这样处理 css3有一个选择器可以做到
<else>
缺少<else>,你的代码中有<else/>!没有<else>
格式是对的呀,下面这个是官网的代码,你看下
$v['id']
有没有值运行正确的案例
对于tp框架模板语法错误,可以根据错误提示到Runtime/Cache文件夹对应模块下的php文件内找出错误。这个语法应该没问题吧。
建议直接输出$v['id']%2 的值先看看。既然没报错。那就不是语法的错误。
你要实现的是偶数项变色或者其他样式吧 根本不用这样处理 css3有一个选择器可以做到