有时候,会发现js失效 ,代码如果是如下的时候
<input type="button" onclick="change()"value="変更確認"name="" >
function cancel(businessContentForm) {
businessContentForm.action = "jobcancelConfirm.do?sa_ymd=<%=request.getAttribute("sa_ymd")%>&sa_sagyo_ymd=<%=request.getAttribute("sa_sagyo_ymd")%>";
businessContentForm.submit();
}
这种时候应该是调用的方法里面没有传参数,
所以进行submit的对象接受不到,就会导致这样的问题出现