js方法:
function check(){
var name = document.getElementById("name").value;
if(name == null || name == ''){
alert("用户名不能为空");
return false;
}
return true;
}
在form中有一个onsubmit返回为true或用submit按钮或用表单id调用submit方法
post比较安全,get会明文显示在地址栏,试一下喽