搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

html document inside iFrame does not reload when Firefox is refreshed

  • 7 个回答
  • 69 人有此问题
  • 1 次查看
  • 最后回复者为 an-con

more options

When I have an html or similar document set as the src in an iframe, when firefox is refreshed, it does not reload the document, even though the contents of the document have changed.

When I have an html or similar document set as the src in an iframe, when firefox is refreshed, it does not reload the document, even though the contents of the document have changed.

所有回复 (7)

more options

http://validator.w3.org/check?uri=http://www.ctas.co.nz/WebscreenNZSBK.aspx

You're missing the three basics of a good web page:

  1. Parse Mode
  2. Doctype
  3. Character Encoding

Firefox does a better job when the page is presented in a Standards Compliance Mode, instead of Quirks Mode. - http://en.wikipedia.org/wiki/Quirks_Mode - You're putting Firefox in the position of having to guess how you expect the page to be displayed.

more options

The page loads just fine after the the iframe is refreshed, it just does not reload when the page is refreshed. Its a cache problem. Please don't criticise other peoples work. This is a bug in firefox, otherwise it wouldn't load correctly to start with.

There are tons of people complaining about this, and doing workarounds in Javascript.

more options

Does it work if you reload and bypass the cache via Ctrl+F5 or a via Shift + Reload ?

more options

No, but it does reload if you Right Click inside the iframe, and choose This Frame | Reload Frame, then it reloads. But customers don't know to do that.

more options

I continue to see people on forums etc complaining about this. One person has even listed the bug reference in Firefox. https://bugzilla.mozilla.org/show_bug.cgi?id=356558

more options

it's work with reload button on firefox

but the point is delete your src="mypage.html" code from iframe then place it in body onload with this script. example :

I have <iframe name="myframe" width="100%" frameborder="no" height="1400px" scrolling="no" onload="return function_name();" src="mypage.html"> </iframe> Then i del the src="mypage.html" code.

in body segment i put this: <body onload = "parent.myframe.location='mypage.html'">

由an-con于修改

more options

And if you encounter problem using both javascript window.onload or html body onload, then try this :

try to put window.onload = yourcode; together with body unload.

i have the tool tip javascript on <head></head> which contain window.onload = initTip; but conflict with my onload iframe <body onload = "parent.myframe.location='mypage.html'">

my solution : delete that window.onload = initTip; from <head></head>, then put them into <body>.

<body onload = "initTip(); parent.myframe.location='mypage.html'">

由an-con于修改