開始學習使用 MySQL 以及使用 .php 連接至資料庫進行操作。home.php<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1...
(詳全文)
發表時間:2013-11-04 08:08:21 | 回應:1
參考下列兩個網址後,內用範例程式碼。https://google-developers.appspot.com/chart/interactive/docs/galleryhttps:...
(詳全文)
發表時間:2013-10-26 20:12:11 | 回應:0
Web service ? 因為專題工作而學習,尚不了解它的需求。.ajax 沒辦法跨網域(Cross Domain),但是對於提供 web service...
(詳全文)
發表時間:2013-10-26 20:01:55 | 回應:0
分兩個檔案,分別使用 .html 和 .php。當前主機必須確保有 Apache 的運行才能跑動 .php,如果不行運作,建議安裝 XAMP...
(詳全文)
發表時間:2013-10-26 19:50:54 | 回應:0
試寫一個點選會將表單收起,另一個則是將表單放出。其核心在於 JQuery 的 hide(), show() 這兩個函數操作。至於送出的...
(詳全文)
發表時間:2013-10-06 21:26:15 | 回應:0
寫一個類似貪吃蛇的模擬動作,無須考慮撞牆、吃到自己,隨著時間身體會增長。預設身體最多 50 節先用 JQuery 對還沒出...
(詳全文)
發表時間:2013-10-06 21:21:52 | 回應:1
用 JavaScript 寫可以去除程式註解功能 從 C/C++ 下手來看,可能只有 // & /**/,要特別考慮註解中的註解。 此外...
(詳全文)
發表時間:2013-10-06 21:13:05 | 回應:1
1.試撰寫函式 centigrade(f),傳入華氏溫度f,計算並傳回對應的攝氏溫度。轉換公式如下: 攝氏溫度 = (5*華氏溫度-160...
(詳全文)
發表時間:2012-06-20 12:33:04 | 回應:0
Privacy Please!function Person(first,last,age) { this.firstname = first; this.lastname = last; this.age = age;...
(詳全文)
發表時間:2012-05-12 09:34:41 | 回應:0
Objects, Objects Everywhere// complete these definitions so that they will have// the appropriate typesvar anO...
(詳全文)
發表時間:2012-05-12 09:22:10 | 回應:0
Objects In Reviewvar spencer = { age: 22, country: "United States"};// make spencer2 here with constructor not...
(詳全文)
發表時間:2012-05-06 10:47:01 | 回應:0
If else statementsvar yourName = "Morris";var gender = "male";var result;//Line 10 starts an if statement//Nes...
(詳全文)
發表時間:2012-04-22 19:03:04 | 回應:0
var area = function (w, l) { // We should return the product of w and l. return w*l;};var isDivisible = functi...
(詳全文)
發表時間:2012-04-15 09:54:48 | 回應:0
// Define quarter here.var quarter = function(n) { return n/4;};if (quarter(4) === 1) { console.log("The state...
(詳全文)
發表時間:2012-04-14 12:57:10 | 回應:0
var identity = function (x) { return x;};identity(50);var identity = function (x) { return square(x);};var squ...
(詳全文)
發表時間:2012-04-14 09:05:15 | 回應:0