-3
我在我網站上的這個腳本引起了一些意外錯誤:Uncaught ReferenceError: $ is not defined
它應該重寫輸入的功能以充當網站表單上的輸入內的選項卡提交該表格。
<script type="text/javascript">
$('input').keypress(function(e) {
if (e.which == 13) {
<--! says error is here within the $ symbol -->
$(this).next('input').focus();
e.preventDefault();
}
});
</script>
這意味着你使用它之前,沒有包括jQuery的 – Tushar
您需要在運行此代碼之前加載jQuery的。 – tarleb
Thx夥計我很抱歉重新發布此..我雖然從其他類似的問題 –