功能:
function disable_hidden_flip_questions(option, value){
var first_q = document.getElementById('hidden_auto_questions');
var second_q = document.getElementById('hidden_include_auto');
var inputs_list = [];
if(option == 'all'){
inputs_list.push(first_q.getElementsByTagName("input"));
inputs_list.push(second_q.getElementsByTagName("input"));
}else if (option == 'first'){
inputs_list.push(first_q.getElementsByTagName("input"));
}else if(option == 'second'){
inputs_list.push(second_q.getElementsByTagName("input"));
}
for (var inputs in inputs_list){
for(var input in inputs_list[inputs]){
if(inputs_list[inputs].hasOwnProperty(input) && input != 'length'){
if(!value){
inputs_list[inputs][input].removeAttribute('disabled');
}else{
inputs_list[inputs][input].setAttribute("disabled", "disabled");
}
}
}
}
}
在 Chrome 和 Firefox 中运行良好,但在 IE9 中,控制台在这一行给我一个错误:
inputs_list[inputs][input].setAttribute("disabled", "disabled")
如果我console.log(inputs_list[inputs][input])
在 Chrome 中得到这个:
(输入是由 RoR 生成的,这就是它name
和id
如此长的原因)
<input class="radio_buttons optional" id="custom_attributes_trailer_insurance_endorsement_false" name="custom_attributes[trailer_insurance_endorsement]" type="radio" value="false" disabled="disabled">
是的,这就是我想要的(和期望的)......但是在 IE9 的控制台中,我得到了这个:
[object HTMLCollection]
这是完全没用的......
所以问题:在 IE 的崇高观点中我哪里出错了?我知道 IE9 支持setAttribute
,所以我假设它与我的for...in
循环有关。
编辑:所以由于评论,问题可能出在对象类型(HTMLCollection
存储在 an 中Array
)。如果确实如此,我该如何让所有数据类型都兼容?