当前位置: 代码迷 >> Java Web开发 >> <form></form>onsubmit 的有关问题
  详细解决方案

<form></form>onsubmit 的有关问题

热度:597   发布时间:2016-04-12 22:34:36.0
<form></form>onsubmit 的问题

<script src="js/1.js" type="text/javascript"></script>
。。。。省略部分代码
<form action="success.jsp" method="post" name="myform" onsubmit ="return checknews();" >
 <table>
 <tr>
    <td> <input type="submit" value="提交"  /></td>
    <td ><input type="reset"  value="重置"/></td>   
   </tr>
  </table>
</form>

1.js
function checknews(){
var ntopic=document.getElementsByName("topic");
var ntitle=document.getElementsByName("title");
var nauthor=document.getElementsByName("author");
var nsummary=document.getElementsByName("summary");
var ncontent=document.getElementsByName("content");
if(ntopic==null||ntopic==""){
alter("请选择主题");
return false;
}
if(ntitle==null||ntitle==""){
alter("请输入标题");
return false;
}
if(nauthor==null||nauthor==""){
alter("请输入作者");
return false;
}
if(nsummary==null||nsummary==""){
alter("请输入摘要");
return false;
}
if(ncontent==null||ncontent==""){
alter("请选择内容");
return false;
}
}


为什么checknews() 点击提交就成功呢?帮忙提示下

------解决方案--------------------
function checknews(){
var ntopic=document.getElementsByName("topic");
var ntitle=document.getElementsByName("title");
var nauthor=document.getElementsByName("author");
var nsummary=document.getElementsByName("summary");
var ncontent=document.getElementsByName("content");
if(ntopic==null
------解决方案--------------------
ntopic==""){
alter("请选择主题");
return false;
}
else if(ntitle==null
------解决方案--------------------
ntitle==""){
alter("请输入标题");
return false;
}
else if(nauthor==null
------解决方案--------------------
  相关解决方案