Currently browsing category

Programming, Page 4

如何在 Dashcode 使用 jQuery?

HOWTO use jQuery in Dashcode? 在main.html內需要引入jquery-x.x.x.min.js檔案. 我是把jquery 當按放在 scripts 目錄內.所以main.html程式如下 : 1 <script type="text/javascript" src="scripts/jquery-1.3.2.min.js" charset="utf-8"></script><script type="text/javascript" src="scripts/jquery-1.3.2.min.js" charset="utf-8"></script> 然後假設你在front panel裡面有個somebutton的按鈕. 按了一下之後使用 …

使用 php 執行 system command

下面這個. 會把輸出儲存在$output 1 2 $cmd = "ls -l"; $output = shell_exec($cmd);$cmd = "ls -l"; $output = shell_exec($cmd); 還有另外一種作法用 system function . 這個在執行過程就會直接顯示出來. …

使用 php 產生 openldap sha 密碼 hash

Using php to create openldap sha password hash 應該很少有人有這樣的需求. 不過我就是有. 下面程式可以讓你產生 ldap sha 密碼 hash : 1 2 $passwd = "TOP_SECRET"; $ldap_passwd …

jQuery flickr demo

這個demo是使用 jQuery 呼叫 flickr api 顯示有關 貓 的 tags. jQuery 程式部份如下 : 1 2 3 4 5 6 7 8 9 10 …

jQuery POST 練習 – 簡單範例

這個主要是練習使用 jQuery 做 ajax POST 的動作.然後把結果塞回網頁上面. 先簡單寫個 helloworld 的 php. 限定它只接收 POST method. 1 2 3 4 5 6 7 <? if …

使用 jQuery 粉飾 table

直接看 DEMO. 我是直接使用 Google 的 jQuery. 1 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> 然後你要定義 table 的 css : 1 2 3 4 5 …