我使用 jquery 制作了一个工具提示。但是第一次(在页面正确加载之后),即使我应用了 500 持续时间的延迟(我想是毫秒?),工具提示也会毫无延迟地出现。为什么会这样?
<html>
<head>
<script src="file://C:/Users/Admin/Desktop/jquery-1.8.3.min.js"></script>
<script>
$(document).ready(function(){
$("input").focus(function(){
$("#div").fadeIn(500).css("background-color","#B0B0B0");
});
$("input").blur(function(){
$("#div").fadeOut(500).css("background-color","#B0B0B0");
});
$("input").keyup(function(){
$("#div").html($("input").val());
});
});
</script>
</head>
<body>
<div style="width:150px">
<input type="text" style="width:100%;border-radius:4px;border:1px solid #808080;padding:1%;font-family:calibri"/>
<div id="div" style="color:#FFF;font-family:calibri;min-height:20px;border-radius:4px;padding:1%;word-wrap:break-word"></div>
</div>
</body>