Join the Mozilla’s Test Days event from Dec 2–8 to test the new Firefox address bar on Firefox Beta 134 and get a chance to win Mozilla swag vouchers! 🎁

Funkcjonalność tej witryny będzie ograniczona w czasie konserwacji. Jeśli artykuł nie rozwiązuje twojego problemu i chcesz zadać pytanie, to nasza społeczność wsparcia jest dostępna na @FirefoxSupport na Twitterze i /r/firefox na Reddicie.

Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Więcej informacji

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.

Wszystkie odpowiedzi (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?