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';