在我的代碼中一切正常,但jQuery不會影響代碼。我有ascss.css
,我還擁有包括和所有這些工作的其他文件,但這個動畫(fadeIn)
不jQuery不運行
<head>
<script src="jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$document.ready(function(){//this code does not run
$(".btn").submit(function(){
$(".find").fadeIn(3000);
});
});
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="searchFile.php">
<table>
<tr><br>
<td >id :</td>
<td><input name="id" type="text" maxlength="40" /></td>
</tr>
<tr>
<td colspan="2" align="center">
<input name="search" type="submit" value="search" class="btn"/></td>
</tr>
</table>
</form>
<?php
if(isset($_POST['id']) and !empty($_POST['id']) and strlen($_POST['id'])==10)
{
require_once("staticfileread.php");
$s=staticfileread::search($_POST['id']);
echo "<br><br><div class='find'>$s</div>";
}
?>
</body>
</html>
好,謝謝我做了什麼ü現在我應該怎麼做纔能有這個DIV的出現說suburition – naziye