<%} 还有这个js函数 function od-6ren">
gpt4 book ai didi

javascript - 如何将jsp变量作为参数传递给javascript方法

转载 作者:行者123 更新时间:2023-11-28 01:09:08 26 4
gpt4 key购买 nike

Hello i have this form:<form method="post" action="Toplanti.jsp">
<input type="hidden" id="dl" name="dl" value="">

这个 hs 代码:

<table>
<%for(int i=1;i<od.odasayisi()+1;i++){ %>
<tr>
<%for(int j=8;j<21;j++){ %>
%><td id="bos">
<input type="button" onclick="oda(<%=i%>)"><%}

还有这个js函数

    function oda(p){
document.getElementById('dl').value=p
var ad=document.getElementById('dl').value
window.open("Odaici.jsp?a="+ad);
}

但是这个方法没有获取到参数p,有没有办法做到这一点?谢谢

最佳答案

您不使用分号

试试这个:

function oda(p){
document.getElementById('dl').value=p;
var ad=document.getElementById('dl').value;
window.open("Odaici.jsp?a="+ad);
}

关于javascript - 如何将jsp变量作为参数传递给javascript方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24691419/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com