标签:表单检验
<form action="${ pageContext.request.contextPath }/addProduct" method="post" onsubmit="return checkform()"><script type="text/javascript">
// 校验表单
function checkform(){
var pname = document.getElementById("pname").value;
if(pname == ""){
// 说明没有输入商品名称
alert("商品名称不能为空");
return false;
}
}
</script>
更详细的内容:http://www.w3school.com.cn/js/js_form_validation.asp
标签:表单检验
原文地址:http://blog.51cto.com/13579086/2074307