可以将两个参数传递给一个模态框。

huangapple 未分类评论43阅读模式
英文:

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

&lt;button type=&quot;button&quot; class=&quot;btn btn-info btn-xs&quot;
 data-toggle=&quot;modal&quot; data-target=&quot;#editModal_&lt;%=oa.getIdOne()%&gt;_&lt;%=oa.getIdtwo()%&gt;&quot;&gt;
&lt;/button&gt;

&lt;jsp:include page=&quot;newModal.jsp&quot;&gt;
   &lt;jsp:param value=&quot;&lt;%= oa.getIdOne()%&gt;&quot; name=&quot;idone&quot;/&gt;
   &lt;jsp:param value=&quot;&lt;%= oa.getIdTwo()%&gt;&quot; name=&quot;idtwo&quot;/&gt;
  &lt;/jsp:include&gt;

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:

  &lt;div class=&quot;modal fade&quot; id=&quot;editModal_&lt;%= idone %&gt;_&lt;%= idtwo%&gt;&quot; role=&quot;dialog&quot;&gt; 
&lt;/div&gt;

huangapple
  • 本文由 发表于 2020年4月6日 02:06:53
  • 转载请务必保留本文链接:https://java.coder-hub.com/61047181.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定