jsp怎样获取本页面中js里的变量?
js能计算table的row数,jsp怎样获取呢?
------解决方案--------------------fucntion doit(){
frm.action = "/xxx/xxx.do?param= " + x;
frm.submit();
}
------解决方案--------------------function rowCount(){
var rownum= ..... //定义这个变量并使它能得到值
}
〈input type= "button " onclick= "rowCount() ">
<c:out value= "${rownum} " scope= "page ">