作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
%} 还有这个js函数 function od-6ren">
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/
我是一名优秀的程序员,十分优秀!