innerHTML,<表单>;和火狐浏览器

发布于 2024-12-20 12:46:43 字数 1044 浏览 1 评论 0原文

我的火狐浏览器有问题。我所做的在 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.getElemen‌​tById('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.getElemen‌​tById('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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴随着你 2024-12-27 12:46:43

在这种情况下,佩卡的评论是正确的。因为你有两个具有相同 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文