我看了重複。我已經推吞下這個腳本只是我的結束標記之前,但我收到以下錯誤,新的未捕獲的語法錯誤:意外的令牌非法
Uncaught Syntax error: Unexpected token ILLEGAL
<script type="text/javascript">
$(document).ready(function() { // here is the error
$(#search).keypress(function(e) {
if(e.which == 13) {
myFunction();
}
});
$("#status").hide();
alert("hide on load ");
$("#more").hide();
});
</script>