标签:
<form name="form1" action="index.php?module=newslist&action=add" method="post" onsubmit="return check(this);" enctype="multipart/form-data" >
<script type="text/javascript">
function check(f){
if(Trim(f.news_title.value) == "" ){
alert(‘新闻标题不能为空!‘);
return false;
}
if(Trim(f.ctype.value) == 0 ){
alert(‘请选择新闻类别!‘);
return false;
}
}
</script>
标签:
原文地址:http://www.cnblogs.com/www-xiaobo-com/p/4444908.html