jQuery表单事件之select事件
上一节
下一节
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>16.9jQuery表单事件之select事件</title>
<script src="../js/jquery-3.1.1.min.js"></script>
<script>
$(function(){
$('#account').select(function(){
$('#inf').text("你已经选中文本了!").fadeIn(2000).fadeOut(2000);
});
});
</script>
</head>
<body>
账号:<input type="text" id="account" value="123456">
<span id="inf" style="display:none"></span>
</body>
</html>
默认效果图

选中文本后效果

过几秒钟后效果


