最近使用anthem控件,点击事件按钮的时候经常报错误: 对象不支持此属性或方法,用IE调试就跳到
function Anthem_SetHiddenInputValue(form, name, value) {
var input = null;
if (form[name]) {
input = form[name];
} else {
input = document.createElement("input");
input.setAttribute("name", name);
input.setAttribute("type", "hidden");
}
input.setAttribute("value", value);
var parentElement = input.parentElement ? input.parentElement : input.parentNode;
if (parentElement == null) {
form.appendChild(input);
form[name] = input;
}
}
这一句上,请指点是什么原因?
慕雪6442864
慕尼黑的夜晚无繁华