哪里错了。
<script language=javascript>function cyz()
{
var temp=document.form1
if (temp.title.value.length==0);
{
alert("【标题不能为空】");
temp.title.focus();
return false;
}
if (temp.title.value.length>20);
{
alert("【标题太长了】");
temp.title.focus();
return false;
}
return true;
}
</script>
哪里错了,输了字也提示
[此贴子已经被作者于2005-7-7 20:31:55编辑过]