<c:if>中参数

来源:互联网 发布:淘宝追评可以改吗 编辑:程序博客网 时间:2024/06/15 14:33

错误

<c:if test="${wechatId}== 0"><script>
alert("请先配置一个订阅号!");
window.location.href = "index#media/wxManager"; </script> </c:if>
 


正确

<c:if test="${wechatId == 0}">

<script>
alert("请先配置一个订阅号!");
window.location.href = "index#media/wxManager";
</script>
</c:if>
 
0 0
原创粉丝点击