英文:
It is possible to pass two parameters to a modal
问题
我想知道是否可以使用这种方法将两个参数传递给模态页面:
<button type="button" class="btn btn-info btn-xs"
data-toggle="modal" data-target="#editModal_<%=oa.getIdOne()%>_<%=oa.getIdtwo()%>">
</button>
<jsp:include page="newModal.jsp">
<jsp:param value="<%= oa.getIdOne()%>" name="idone"/>
<jsp:param value="<%= oa.getIdTwo()%>" name="idtwo"/>
</jsp:include>
当我重新加载页面时,按钮无法工作,当我移除“-”时,会出现内部错误。
英文:
I wanted to know if it's possible to use this method to pass 2 parameter to a modal page
<button type="button" class="btn btn-info btn-xs"
data-toggle="modal" data-target="#editModal_<%=oa.getIdOne()%>_<%=oa.getIdtwo()%>">
</button>
<jsp:include page="newModal.jsp">
<jsp:param value="<%= oa.getIdOne()%>" name="idone"/>
<jsp:param value="<%= oa.getIdTwo()%>" name="idtwo"/>
</jsp:include>
When I reload the page the button doesn't work and and when I remove the - an internal error occurs.
答案1
得分: 0
我解决了。
在模态文件中,我设置了这样的代码:
<div class="modal fade" id="editModal_<%= idone %>_<%= idtwo%>" role="dialog">
</div>
英文:
I solved.
In the modal file i set the dive:
<div class="modal fade" id="editModal_<%= idone %>_<%= idtwo%>" role="dialog">
</div>
专注分享java语言的经验与见解,让所有开发者获益!
评论