我是新的jojQuery和Ajax,我試圖寫一個簡單的頁面,它將顯示按鈕點擊數據而不刷新頁面。 但我看到腳本錯誤未捕獲SyntaxError:缺失)在參數列表
uncaught SyntaxError: missing) after argument list
我把文件在我的WAMP的WWW文件夾,並在同一文件夾我的data.txt文件。 我檢查了所有圓括號,並且大括號正確關閉。
<!DOCTYPE html>
<html>
<head>
<title>MyTitle</title>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$("#btn").click(functin(){
$("#test").load("data.txt");
});
});
</script>
</head>
<body>
<div id="test">
<p> This is First Comment</p>
<div>
<button id="btn">Submit</button>
<body>
</html>
很好,先生! :) – tibetty
非常感謝主席先生。不知道我是怎麼錯過的。:) –
好吧,當我們看到代碼太多時,這很正常,我們看不到明顯的。它經常發生,通常會去喝咖啡幫助我們。 :) – Jacobi