Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Method not working Form.submit()

more options

I am working on financial project on which we have JSP's to be loaded on browser. We have few buttons on that screen (e.g Save, Back, New Entry, Add Insturment) on which on click of all other buttons codde works proper except Clicking on "Add Instrument Button".

When we click on Add Insturment button and debug we found that browser reads out those all the lines even after the statement below.
        	objFrm.action = "getDetailBO.action";

objFrm.submit();

Where objForm is

var objFrm = document.getElementById("frmMain");

but this happens when new record is entered and the action which I mentioned earlier "getDetailBO.action" that gets assigned to form .After that if I click on any other button e.g Save or Back this action gets executed "getDetailBO.action" and form gets forwarded to detail entry screen.

I am working on financial project on which we have JSP's to be loaded on browser. We have few buttons on that screen (e.g Save, Back, New Entry, Add Insturment) on which on click of all other buttons codde works proper except Clicking on "Add Instrument Button". When we click on Add Insturment button and debug we found that browser reads out those all the lines even after the statement below. objFrm.action = "getDetailBO.action"; objFrm.submit(); Where objForm is var objFrm = document.getElementById("frmMain"); but this happens when new record is entered and the action which I mentioned earlier "getDetailBO.action" that gets assigned to form .After that if I click on any other button e.g Save or Back this action gets executed "getDetailBO.action" and form gets forwarded to detail entry screen.

모든 댓글 (1)

more options

Is there any error noted in the Browser Console (Ctrl+Shift+j) after clicking the button? I suggest using Clear in the console before testing, since duplicate errors may be hard to spot otherwise.

Could you try using a full URL and see whether that fixes it?