当我将鼠标悬停在输入字段上时,什么也没有发生。Chrome 控制台返回没有错误或错误。JQuery 脚本放在我的代码中。这是下面的代码。
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js">
</script>
<style type="text/css">
#button1 {display: none;}
</style>
<script type="text/javascript" >
$('#form1').hover(function(){$('#button1').css("display",
"block");$(this).fadeIn(100);});
</script>
<input type="text" id="form1"/>
<input type="button" id="button1" />