0
JSPform.action分配 - 對象不支持此屬性或方法
<form:form id="myForm" action="myAction.html" name="sws" commandName="myModel" method="POST">
.
.
</form:form>
的Javascript
var currentForm=document.getElementById("myForm");
currentForm.target = '_self';
currentForm.action = 'myAction2.html';
currentForm.submit();
我正在錯誤object doesn't support this property or method
在IE 7中,在線路 - > currentForm.action ='myAction2.html';
IE7?你真的在運行XP嗎? –
'.getElementById(「myForm」)'? – sp00m
@ sp00m對不起,由於我正在處理專有代碼,因爲id更改而導致複製粘貼錯誤。這其實不是問題。仍然卡住。 – user2918640