JSTL中嵌套JavaScript
问题说明:在jsp中会通过后台传值来判断是否关闭dialog,并且可能需要往弹出的父窗体传值,父窗体可能是一个iframe,因此需要使用在jstl判断后台传值,插入JavaScript代码向父窗体传值。
<!--jstl中使用test判断后台传值--> <c:if test="${pd.state == 1 }"> <span class="green">更新成功</span> <input id="NEWPIC" type="hidden" value="${pd.LIVEPICURL}"/> <script type="text/javascript"> var pic = $("#NEWPIC").val(); //获取当前父窗体,如果多个iframe最好使用id来进行筛选 var tops = $("#panel iframe:visible",window.parent.document)[0]; //切记,iframe要使用contentWindow.document来获取document var topFrame= $(tops.contentWindow.document).find("#LiveImageURL").attr("name",pic); </script> </c:if>
相关推荐
架构技术交流 2020-07-28
haohong 2020-07-18
tiankele0 2020-06-26
xiangxiaojun 2020-06-25
pythonclass 2020-06-04
WebVincent 2020-06-03
sixthelement 2020-05-30
云之高水之远 2020-05-19
云之高水之远 2020-05-17
Chydar 2020-05-15
tuxlcsdn 2020-04-17
ajaxtony 2020-02-03
STPace 2020-02-03
学留痕 2013-05-11
云之高水之远 2020-01-05
TONIYH 2019-12-20
nimeijian 2019-12-15
我只是个程序员 2014-01-18