我在 IE8 中遇到以下错误
Object doesn't support this property or method
我在下一行收到此错误
fieldName.form.action = 'some action url';
我已经提醒 fieldName 如下
alert(typeof(fieldName));
它提醒“对象”
有人对此有任何想法吗?
我在 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';