window.location.reload 刷新使用分析刷新使用分析(去对话框去对话框)
使用window.location.reload;刷新时,如果提交数据的动作,则会出现讨厌的对话框!
解决此问题,应该这样写:解决此问题,应该这样写:
window.location.href=window.location.href;
window.location.reload;
同理,如果是刷新父窗口,应该这样写:
window.opener.location.href=window.opener.location.href;
window.opener.location.reload();
这种写法就不出现那讨厌的对话框啦!
介绍介绍JS实现刷新实现刷新iframe的方法的方法
<iframe src=”1.htm” name=”ifrmname” id=”ifrmid”></iframe>
方案一方案一:用用iframe的的name属性定位属性定位
<input type=”button” name=”Button” value=”Button”
onclick=”document.frames(‘ifrmname’).location.reload()”>
或
<input type=”button” name=”Button” value=”Button”
onclick=”document.all.ifrmname.document.location.reload()”>
方案二:用iframe的id属性定位
<input type=”button” name=”Button” value=”Button”
onclick=”ifrmid.window.location.reload()”>
终极方案:当iframe的src为其它网站地址(跨域操作时)
<input type=”button” name=”Button” value=”Button”
onclick=”window.open(document.all.ifrmname.src,’ifrmname’,”)”>
以下以 IE 代替 Internet Explorer,以 MF 代替 Mozzila Firefox
1. document.form.item 问题
(1)现有问题:
现有代码中存在许多 document.formName.item(“itemName”) 这样的语句,不能在 MF 下运行
(2)解决方法:
改用 document.formName.elements[“elementName”]
(3)其它
参见 2
2. 集合类对象问题
(1)现有问题:
现有代码中许多集合类对象取用时使用 (),IE 能接受,MF 不能。
(2)解决方法:
改用 [] 作为下标运算。如:document.forms(“formName”) 改为 document.forms[“formName”]。
又如:document.getElementsByName(“inputName”)(1) 改为 document.getElementsByName(“inputName”)[1]
(3)其它
3. window.event
(1)现有问题:
使用 window.event 无法在 MF 上运行
(2)解决方法:
MF 的 event 只能在事件发生的现场使用,此问题暂无法解决。可以这样变通:
原代码(可在IE中运行):
<input type="button" name="someButton" value="提交" onclick=""/>
<script language="javascript">
function gotoSubmit() {
alert(window.event); // use window.event
}
</script>
新代码(可在IE和MF中运行):
评论0
最新资源