怎么将<c:if test="${fn:length(userInfo.phone)>10}"> ${fn:substring(userInfo.phone, 0, 3)}****${fn:substring(userInfo.phone, 7, 11)} </c:if>放入<input>标签中的
时间: 2024-04-10 16:33:40 浏览: 131
开发<c:if>标签
你可以使用 JSP 的标签库将<c:if>标签中的内容放入<input>标签中。具体操作如下:
```jsp
<input type="text" name="phone" value="<c:if test="${fn:length(userInfo.phone)>10}">
${fn:substring(userInfo.phone, 0, 3)}****${fn:substring(userInfo.phone, 7, 11)}
</c:if>" />
```
这样,如果userInfo.phone的长度大于10,则会显示带有隐藏部分的手机号码;否则,会显示完整的手机号码。
阅读全文