如果默认用户名和密码值未更改或留空,我该如何禁用表单提交?如果没有任何更改或填写,我还想显示一条警报消息。这是我的代码:
<script>
$(document).ready(function(){
$('input[type=text], input[type=password]').focus(function() {
if(this.value === this.defaultValue)
{
$(this).val("");
}
}).blur(function(){
if($(this).val().length == 0)
{
$(this).val(this.defaultValue);
}
});
})
</script>
<form id=""form1" action="process.php" method="post">
<input type="text" name="un" value="Username"/>
<input type="password" name="pw" value="Password"/>
<input type="submit" value="Submit"/>
</form>
请帮忙!提前致谢!