为什么JSP的onsubmit没反应呢?

2025-01-04 07:02:07
推荐回答(3个)
回答1:

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

http://www.w3.org/TR/html4/loose.dtd
">







Insert title here

 

function checkForm(obj){ 

 alert("++");

 if(obj.name.value=="") 

 {  

 alert("用户名不能为空!"); 

obj.name.focus();  

return false;  }

return true;}







 

 用户名:  

 

 



我这边可以跑啊、、你看看你的头文件和我的比较下、再测试下、、

回答2:

onsubmit="return= checkForm(this)“

回答3:

onsubmit="return checkForm(this);"去掉return 试下