我嘗試將jquery用於當前在localhost上測試的Web項目。在我base.html
我嘗試使用此鏈接我可以在開發Django項目時使用jquery嗎?
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js">
使用谷歌服務在我的網站上呈現,我得到有效的標記:
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").toggle();
});
</script>
</head>
但功能不起作用。我必須host jquery myself while developing?
使用瀏覽器控制檯查看拋出的錯誤...會看到'syntax error' – charlietfl 2013-02-16 17:02:21