<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
在“表格:表格”内
<form:form class="form-container" name ="feedback_popup_form" id="feedback_popup_form" action="savefeedback" method="post" modelAttribute="feedbackVO" commandName="feedbackVO">
<form:input type="hidden" path="strEmplRefrlSeq" value="${model.strEmplRefrlSeq}" />
<input type="hidden" id="mady" value = "${fn:length(model.strEmplRefrlSeq)}" />
在萤火虫我得到
<input id="strEmplRefrlSeq" type="hidden" value="2,10,11," name="strEmplRefrlSeq">
<input id="mady" type="hidden" value="0">
我的 fn:length 不适用于字符串输入。你能解释一下为什么会这样吗?