javascript表单字段submit:Object dos'在IE8中不支持此属性或方法

javascript form field submit : Object doesn't support this property or method in IE8

本文关键字:IE8 不支持 方法 属性 submit 字段 表单 Object dos javascript      更新时间:2023-09-26

我在IE8 中收到以下错误

Object doesn't support this property or method 

我在下面的线路上收到这个错误

fieldName.form.action = 'some action url';

我已经通知了fieldName,就像下面的一样

alert(typeof(fieldName));

它提醒"对象"

有人知道这件事吗?

通过替换以下行解决了问题

fieldName.form.action = 'some action url';

fieldName.form.setAttribute('action','some url');

从这里得到答案

试试这个代码

document.form_name.action='some url';
document.getElementById('IdOfForm').action='some action URL';