1.document.formName.item("itemName") 问题
说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用document.formName.elements["elementName"]. 解决方法:统一使用document.formName.elements["elementName"]. Text1: document.formName.item("itemName") document.formName.elements["elementName"]
------------------------------------------------- 2.集合类 |