我有一个表单,我需要动态填充标签(使用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 =和adoptname =的不同值是由于动态重用表单)
>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</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经验所以我为非最佳代码道歉。感谢任何帮助,谢谢!
答案 0 :(得分:0)
我猜这意味着Firefox不支持.labels
属性。
请改为尝试:
document.querySelector("[for='"+ID+"']").innerHTML = "$"+varNewPrice;
只需确保ID
是对元素ID的引用。你当前的代码真的很奇怪...它看起来好像你有多个具有相同ID的元素......
答案 1 :(得分:0)
似乎:
this.document.getElementById('dialog-form')[4]
是对id="price1" ... name="price"
输入的引用。您也可以使用以下方法获取相同的元素:
this.document.forms['dialog-form'].price
但无论如何,HTMLInputElement的界面未包含标签属性。你期望它做什么,返回相关标签(如果有的话)?
您需要说出您要做的事情并发布DOM的相关部分,最好是HTML。