JavaScript刷新框架及页面的方法总集说明.doc

JavaScript刷新框架及页面的方法总集说明.doc

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
先来看一个简单的例子 下面以三个页面分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。? frame.html 由上(top.html)下(bottom.html)两个页面组成,代码如下: !?DOCTYPE?HTML?PUBLIC?-//W3C//DTD?HTML?4.0?Transitional//EN?? ? ??HTML?? ? ??HEAD?? ? ??TITLE???frame??/?TITLE?? ? ?/?HEAD??? ? ??frameset??rows?=50%,50%?? ? ??frame??name?=top??src?=top.html?? ? ??frame??name?=bottom??src?=bottom.html?? ? ?/?frameset?? ? ?/?HTML?nbsp;? 现在假设top.html (即上面的页面) 有七个button来实现对bottom.html (即下面的页面) 的刷新,可以用以下七种语句,哪个好用自己看着办了。 语句1. window.parent.frames[1].location.reload(); 语句2. window.parent.frames.bottom.location.reload(); 语句3. window.parent.frames[bottom].location.reload(); 语句4. window.parent.frames.item(1).location.reload(); 语句5. window.parent.frames.item(bottom).location.reload(); 语句6. window.parent.bottom.location.reload(); 语句7. window.parent[bottom].location.reload(); top.html 页面的代码如下: !?DOCTYPE?HTML?PUBLIC?-//W3C//DTD?HTML?4.0?Transitional//EN?? ? ??HTML?? ? ????HEAD?? ? ?????TITLE???top.html??/?TITLE?? ? ???/?HEAD?? ? ??BODY?? ? ??input??type?=button??value?=刷新1??onclick?=window.parent.frames[1].location.reload()??br?? ? ??input??type?=button??value?=刷新2??onclick?=window.parent.frames.bottom.location.reload()??br?? ? ??input??type?=button??value?=刷新3??onclick?=window.parent.frames[bottom].location.reload()??br?? ? ??input??type?=button??value?=刷新4??onclick?=window.parent.frames.item(1).location.reload()??br?? ? ??input??type?=button??value?=刷新5??onclick?=window.parent.frames.item(bottom).location.reload()??br?? ? ??input??type?=button??value?=刷新6??onclick?=window.parent.bottom.location.reload()??br?? ? ??input??type?=button??value?=刷新7??onclick?=window.parent[bottom].location.reload()??br?? ? ?/?BODY?? ? ?/?HTML?? 下面是bottom.html页面源代码,为了证明下方页面的确被刷新了,在装载完页面弹出一个对话框。 bottom.html 页面的代码如下: !?DOCTYPE?HTML?PUBLIC?-//W3C//DTD?HTML?4.0?Transitional//EN?? ? ??HTML?? ? ????HEAD?? ? ?????TITLE???bottom.html??/?TITLE?? ? ???/?HEAD?? ? ??BODY??onload?=alert(我被加载了!)?? ? ??h1??This?is?the?content?in?bottom.html.?/?h1?? ? ?/?BODY?? ? ?/

文档评论(0)

taotao0b + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档