织梦dedecms多选checkbox字段值独立输出样式调用方法

我们在开发织梦模板,自定义多选checkbox类型的字段时,选择了多个值,在前端模板出时,默认都是以英文,链接的多个checkbox选择值一次性出。用户体验非常不好。可以按照以下调用方法,给每个checkbox值都增加一个classname,从而可以独立输出显示。如下图:

 

调用方法

 

1、在dede:artlist和dede:list标签中调用代码如下:

[field:自定义字段 runphp=yes]

$arr = explode(',',@me);

$result = '';

for($index=0;$index<count($arr);$index++){

    $result .= "<span class='dededao'>$arr[$index]</span>";

}

@me = $result;

[/field:自定义字段]

2、在内容页模板中调用代码如下:

{dede:field.自定义字段 runphp=yes}

$arr = explode(',',@me);

$result = '';

for($index=0;$index<count($arr);$index++){

    $result .= "<span class='dededao'>$arr[$index]</span>";

}

@me = $result;

{/dede:field.自定义字段}

完成。

--------------------- 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/2e54cb3ad07e7580cd904651c3f4ca32.html