代码
Microsoft   JScript   运行时错误:   对象不支持此属性或方法  
 
<script   language="javascript">   
<!--   
  
function   __doPostBack(eventTarget,   eventArgument)   
{   
 
var   theform;   
if   (window.navigator.appName.toLowerCase().indexOf("netscape"> -1)   
{   
  theform   
=   document.forms["releasead"];   
}   
else   
{   
 theform   
=   document.releasead;   
}   
     theform.__EVENTTARGET.value   
=   eventTarget.split("$").join(":");   
     theform.__EVENTARGUMENT.value   
=   eventArgument;   
     theform.submit();   
~~~~~~~~~~~~~~~~~提示这里出错   
}   
//   -->   
</script>    

原来是表单里也有一个控件取了名“submit”,改过来就好了命名重复

 

 

相关文章:

  • 2022-12-23
  • 2021-09-06
  • 2021-06-03
  • 2021-08-23
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-24
  • 2021-10-15
  • 2021-12-20
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案