본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

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

자세히 살펴보기

Navigation

more options

Hello,

I've got an "issue" with the back button of firefox when I have : - a test.html page with a link to "http://localhost:8080/home.html" that redirect to home.html - home.html page posts data in jquery to http://localhost:8080/post.html page

When i use the back button of firefox, i come back to the post.html page. With internet explorer and chrome, i come back to the test.html page

Is this an issue or is this normal. If i want to have the navigation like internet explorer and chrome, what do you recommend ?

Thanks for your help and Best regards

Hello, I've got an "issue" with the back button of firefox when I have : - a test.html page with a link to "http://localhost:8080/home.html" that redirect to home.html - home.html page posts data in jquery to http://localhost:8080/post.html page When i use the back button of firefox, i come back to the post.html page. With internet explorer and chrome, i come back to the test.html page Is this an issue or is this normal. If i want to have the navigation like internet explorer and chrome, what do you recommend ? Thanks for your help and Best regards

모든 댓글 (4)

more options

HI, you may have to go to a CSS forum for a work around.

Please check your code. Firefox dislikes errors that others allow. W3C.org (World Wide Web Consortium) in charge of standards and practices and future development of web pages and web browsers make the rules on code. Mozilla Firefox follows these rules. HTML https://validator.w3.org/ CSS https://jigsaw.w3.org/css-validator/ and https://validator.w3.org/i18n-checker/ and http://mobile.css-validator.org/

more options

jdonizeau said

I have :
  • a test.html page with a link to "http://localhost:8080/home.html" that redirect to home.html
  • home.html page posts data in jquery to http://localhost:8080/post.html page
When i use the back button of firefox, i come back to the post.html page. With internet explorer and chrome, i come back to the test.html page

I think you're saying: the browser is displaying post.html. You click the Back button and:

  • Firefox comes back to post.html (goes forward from home.html)
  • IE and Chrome go back to test.html (goes backward from home.html)

Those are both weird, aren't they, shouldn't all three browsers just display home.html, the page you went back to? What kind of scripting is in home.html that should cause anything else to happen?

more options

jscher2000 said

jdonizeau said
I have :
  • a test.html page with a link to "http://localhost:8080/home.html" that redirect to home.html
  • home.html page posts data in jquery to http://localhost:8080/post.html page
When i use the back button of firefox, i come back to the post.html page. With internet explorer and chrome, i come back to the test.html page

I think you're saying: the browser is displaying post.html. You click the Back button and:

  • Firefox comes back to post.html (goes forward from home.html)
  • IE and Chrome go back to test.html (goes backward from home.html)

Those are both weird, aren't they, shouldn't all three browsers just display home.html, the page you went back to? What kind of scripting is in home.html that should cause anything else to happen?

Yes, in firefox the back button forwards to home.html that redirect to post.html. Internet explorer and chrome forward to test.html

For you it's normal in firefox and weird in the two others ?

The content of the three files is below Best regards

test.html <html> <head> <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> </head> <body> <a href="http://localhost:8080/home.html">ici</a> </body> </html>


home.html <html> <head> <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> </head> <body> <form id="myForm" method="POST" action="http://localhost:8080/post.html"> <input type="hidden" name="input1" id="input1" value=""/> <input type="hidden" name="input2" id="input2" value=""/> </form> <script> $( document ).ready(function() { $("#myForm").submit(); }); </script> </body> </html>


post.html <html> <head> <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> </head> <body> <script> $( document ).ready(function() { alert("POSTED DATA"); }); </script> </body>' </html>

more options

https://www.jeffersonscher.com/temp/test.html

If you right-click the Back button on the post.html page, you can see that Firefox includes home.html in history and Chrome does not. But I don't know why there is that difference.

If I delay the post until the load event has fired (home2 link), I get the same "back" history in both browsers.

글쓴이 jscher2000 - Support Volunteer 수정일시