innerHTML,<表单>;和火狐浏览器表单>
我的火狐浏览器有问题。我所做的在 IE 上运行得很好,但在 Firefox 上却不行。
我使用 innerHTML
将带有表单的 div
放入 window.parent
中:
window.parent.getElementById('DIV_page').innerHTML = getElementById('DIV_page').innerHTML ;
在此 div
中,>form
看起来像:
<form method="post" style="padding:0px;margin:0px;" name="f_bg_page" id="f_bg_page" target="If_menulb" action="if_menulb.php">
<input type="hidden" name="p" value="455">
<input type="hidden" name="w" value="prefs_lb">
如何 innerHTML
一个带有 window.parent
表单的 div
?
编辑: 它们具有相同的 ID,但一个在主页中,另一个在 iframe 中,因此它们不一样。我找到了一种方法:
window.parent.document.getElementById('DIV_page').innerHTML = '' ;
window.parent.document.getElementById('DIV_page').appendChild(document.getElementById('DIV_page'));
但是对于 IE 和 Opera,这种形式的 背景为白色,彩色文本为白色,所以我们可以看不到此
中的文本
I have a problem with Firefox. What I did works fine with IE but not with Firefox.
I use innerHTML
to put a div
with a form in a window.parent
:
window.parent.getElementById('DIV_page').innerHTML = getElementById('DIV_page').innerHTML ;
In this div
the form
looks like:
<form method="post" style="padding:0px;margin:0px;" name="f_bg_page" id="f_bg_page" target="If_menulb" action="if_menulb.php">
<input type="hidden" name="p" value="455">
<input type="hidden" name="w" value="prefs_lb">
How can I innerHTML
a div
with a form to window.parent
?
Edit:
They have the same ID but one is in the main page, the other is in an iframe, so they are not the same. I have found a way:
window.parent.document.getElementById('DIV_page').innerHTML = '' ;
window.parent.document.getElementById('DIV_page').appendChild(document.getElementById('DIV_page'));
but there is a but with IE and Opera, a <input type="text">
in this form has a background white with color text in white, so we can't see the text in this <input>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,佩卡的评论是正确的。因为你有两个具有相同 id 的元素,所以 JavaScript 不知道选择哪一个。我想这种情况在每个浏览器中以不同的方式实现。有些人会选择它找到的第一个,其他人会做其他事情。
给有问题的元素不同的 id,你会发现你的问题已经解决了。
Pekka's comment is correct in this case. Because you have two elements with the same id, javascript doesn't kmow which one to choose. I imagine that this case is implemented in different ways in each browser. Some will sekect the first it finds, others will do something else.
Give the elements in question different id's and you'll find your problem is solved.