SQL 是資料庫的一種分類,有很多軟體都屬於 SQL 資料庫,如你說的 MySQL 和 MSSQL,這兩個是資料庫軟體的名稱。基本上都可以,大同小異,不過 MSSQL 應該是要付錢的,MySQL 可以免費用。
@cwpeng-course7 жыл бұрын
SQL 和程式語言沒什麼特別關聯,它只是操作資料庫的語法而已,所以 OK 的。
@jefflin12756 жыл бұрын
老師您好,不好意思又打擾了 不知道在這邊問適不適當,可是真的疑惑 我自己在網路上學jQuery的教學,他有一個線上challange 目標是: Use a class selector to only select the vacations with a class of .america 我本來以為是 $(.vacation america) 但是發現他提示說,li class="vacation america" 其實是 Keep in mind that means that there are two classes for that element: .vacation and .america. 這是為什麼呢? 照之前所學的,我理解為ul中的 li項目用一個叫做.vacation america的css 修飾 不知道為何這邊理解是兩個classes? Vacation Packages San Francisco, California $700 Washington DC, District of Columbia $400 London, England $1,100
找了很久不知道哪裡有問題 QQ 拜託幫我看一下 function getData(){ var req=new XMLHttpRequest(); req.open("get", "127.0.0.1/popular.html"); req.onload=function(){ var content=document.getElementById("content"); content.innerHTML=this.responseText; }; req.send(); }
@cwpeng-course5 жыл бұрын
程式看起來蠻好的,可能要看看你的開發人員工具中的終端機,是否有錯誤訊息可以分享。
@胡貽安-w8s8 жыл бұрын
彭老師您好: 網路上聽您的課是一種樂趣, 我在聽AJAX課時, 跟著您的課輸入程式, 設定伺服器. 在RUN程式PAGE時出現下列錯誤 2127.0.0.1/popular.htm Failed to load resource: the server responded with a status of 404 (Not Found) page.html:1 XMLHttpRequest cannot load 127.0.0.1/popular.htm. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. The response had HTTP status code 404. 不知問題出在哪裡, 手動輸入 127.0.0.1/popular.htm.可以找到. 請不吝指教
@cwpeng-course8 жыл бұрын
不好意思,可能要先確認一些伺服器設定: 1. 先看看 port 是不是設定成 80?如果不是的話,就設定成 80。 2. 再看看伺服器有沒有正確指定到網頁所在的資料夾?