我是 jQuery 新手,我正在尝试使用教程来理解它。我从注册表单验证开始。我做了一个脚本,它工作正常,但消息显示了几秒钟。我希望在用户再次填写该字段之前显示消息。
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<style>
p { color:red; margin:4px; }
b { color:blue; }
</style>
<script src="jquery-latest.js"></script>
<script src="jquery.js"></script>
</head>
<body>
<p></p>
<form id="form1">
Name<input type="text" name="fname" id="fname">
<input type="submit" value="submit" id="submit">
</form>
<script>
$(document).ready(function(){
//var msg=$("p").text("Are you sure?");
$("#form1").click(function(){
if ($('#fname').val()=="") {
//$("#ms").show("slow");
$("p").html("Are you sure?");
//$(this).show("Are you sure?");
}
});
});
</script>
</body>
</html>