div层的隐藏和显示问题
<script type="text/javascript">function validate(id)
{
if(document.form1.ysn.value="" || document.form1.mima.value="")
document.getElementById(id).style.display='block';
else
document.getElementById(id).style.display='none';
}
</script>
层:
<div id="ysn1" style="display:none">请输入用户名或密码!</div>
默认是不显示
就是判断用户名和密码是不是空
如果空,那就显示出来
<input type="button" name="button" id="button" value="登录" onclick="validate('ysn1')"/>
显示:网页上有错误
[ 本帖最后由 lydiasam 于 2011-1-4 12:43 编辑 ]