layui之在table使用模版语言

1,一个是简单的例子,代码如下,作用是点击地址跳转的:

{field:'url',title:'链接地址',templet: '#urlTpl'},//绑定tpl表达式
<script type="text/html" id="urlTpl">
    <a href="{{d.url}}" target="_blank">{{d.url}}</a>
</script>

2, 判断数字的template,代码如下:

{field:'hot',title:'是否热门',templet: '#hotTpl'},
<script type="text/html" id="hotTpl">
    {{# if(d.hot == 1){  }}
        <p color="blue"></p>
    {{# }else{             }}
         <p color="blue"></p>
    {{#      }      }}
</script>

注意:只有js的代码,采用        {{#}}       包裹

遇到还有别的就,以后再加

猜你喜欢

转载自www.cnblogs.com/fuckingPangzi/p/9950033.html