《2019年1月5日》【连续458天】
标题:val方法;
内容:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input type="button" value="呵呵" id="btn">
<input type="text" value="haha" id="txt">
<script src="jquery-1.12.4.js"></script>
<script>
$(function () {
//console.log($("#btn").val());
//$("#btn").val("哈哈");
//console.log($("#btn").attr("value"));
//$("#txt").val("123");
$("#txt").focus(function () {
//如果是默认值,清空内容
if($(this).val() === "haha"){
$(this).val("");
}
});
$("#txt").blur(function () {
if($(this).val() === ""){
$(this).val("haha");
}
});
});
</script>
</body>
</html>