0

我有一个表单,我需要动态填充其标签(由 Google Closure 生成)。我让它在 chrome 中工作,但是当我在 Firefox 中尝试它时它不起作用,并且失败并出现以下错误:

TypeError: this.document.getElementById(...)[$i].labels is undefined
....document.getElementById('dialog-form')[$i].labels[0].innerHTML = "$" + varNewPr...

通过 Firebug 控制台检查我得到以下错误:

>>> this.document.getElementById('dialog-form')[4]
<input id="price1" type="radio" value="1" percentage="90" adoptname="90" name="price">
>>> this.document.getElementById('dialog-form')[4].labels
undefined

然而,在 chrome 中使用本机调试控制台它可以工作(value= 和采用name= 的不同值是由于动态重用表单)

>this.document.getElementById('dialog-form')[4]
<input type=​"radio" name=​"price" adoptname=​"180" id=​"price1" percentage=​"90" value=​"2">​
>this.document.getElementById('dialog-form')[4].labels
[<label class=​"adopt-label" for=​"price1">​$0​&lt;/label>​]

这是从 Google Closure 编译器出来后的 html 表单代码:

// This file was automatically generated from basic.soy.
// Please don't edit this file by hand.

if (typeof examples == 'undefined') { var examples = {}; }
if (typeof examples.simple == 'undefined') { examples.simple = {}; }


examples.simple.adoptForm = function(opt_data, opt_ignored) {
return '<div class="adopt-general">
<div class="adopt-header">

....

<ul class="adopt-list">
<li><label>Tell me if the price drops below:</label>
<li><input type="radio" name="price" adoptname="$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.9)) + '" id="price1" percentage="90" value="' + soy.$$escapeHtml(opt_data.itemNumber) + '" />
<label class="adopt-label" for="price1">$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.9)) + '</label>
<input type="radio" name="price" adoptname="$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.8)) + '" id="price2" percentage="80" value="' + soy.$$escapeHtml(opt_data.itemNumber) + '" />
<label class="adopt-label" for="price2">$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.8)) + '</label>
<input type="radio" name="price" adoptname="$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.7)) + '" id="price3" percentage="70" value="' + soy.$$escapeHtml(opt_data.itemNumber) + '" />
<label class="adopt-label" for="price3">$' + soy.$$escapeHtml(Math.round(opt_data.price * 0.7)) + '</label></ul>

    ...;

};

javascript代码在这里:

for(var $i = 0; $i < $myDialogLength; $i++){
    this.document.getElementById('dialog-form')[$i].setAttribute("value",skuNumber);
    this.document.getElementById('dialog-form')[$i].checked = false;
    if(this.document.getElementById('dialog-form')[$i].getAttribute("percentage") !== null){
        varIdNum = this.document.getElementById("dialog-form")[$i].getAttribute("percentage");
        var varNewPrice = (varIdNum*price/100);
        this.document.getElementById('dialog-form')[$i].setAttribute("adoptname",varNewPrice);            
        this.document.getElementById('dialog-form')[$i].labels[0].innerHTML = "$" + varNewPrice;
    }
....
}

代码的最后一行是在 Firefox 中抛出错误。我也在使用 JQuery 并且没有太多的 javascript 经验,所以我为非最佳代码道歉。任何帮助表示赞赏,谢谢!

4

2 回答 2

0

我想这意味着 Firefox 不支持该.labels属性。

试试这个:

document.querySelector("[for='"+ID+"']").innerHTML = "$"+varNewPrice;

只需确保这ID是对元素 ID 的一些引用。您当前的代码真的很奇怪...看起来您有多个具有相同 ID 的元素...

于 2013-10-03T00:21:29.710 回答
0

看起来:

this.document.getElementById('dialog-form')[4]

是对带有 的输入的引用id="price1" ... name="price"。您还可以使用以下方法获得相同的元素:

this.document.forms['dialog-form'].price

但无论如何,HTMLInputElement的接口不包含标签属性。你期望它做什么,返回相关的标签(如果有的话)?

您需要说出您正在尝试做什么并发布 DOM 的相关部分,最好是 HTML。

于 2013-10-03T00:51:05.717 回答