我有一个jsp,从中可以将iframe称为iframe1。
<iframe id="iframe1" style="display:none;" height="430" width="675" src="Myjps.jsp" ></iframe>
现在,我有一个名为myActualValue的参数,该参数是从bean中获取的。现在,我必须将此参数传递给iframe1。我该怎么做 ?
请帮忙。
在第一个jsp中:
<iframe id="iframe1" style="display:none;" height="430" width="675" src="Myjps.jsp?myActualValue=<%= myActualValue %>" ></iframe>
内部Iframe1(Myjps)
<script> var myActualValue = location.search.substring(1).split("=")[1]; </script>