Ian:爸~你們學校有CPR研習嗎?
我 :有啊!但我們是老師參加
Ian:對啊!我們學校也是老師參加
Ian:那個假人我們學校的網頁有,看得到
我 :哦!那個叫安妮~你晚上假裝是我的安妮,我做示範教學…
Ian:噁~我會吐
哦醬啊!
2014年5月9日
2014年5月1日
ubuntu 14.04 Grub 修改預設開機順序
- sudo vim /etc/default/grub
- 修改其中 GRUB_DEFAULT=0,0為開機選單的順序,(0代表第1)
- 存檔
- sudo update-grub
- 重新開機,搞定
2014年4月19日
使用 Google CDN Host 的 Javascript Library - jQuery
使用 Google CDN Host 的 Javascript Library - jQuery
目前 Google Host 的 AJAX Library 有:
jQuery, https://developers.google.com/speed/libraries/devguide#jquery
jQuery UI,
Prototype,
script.aculo.us, MooTools, Dojo 等
來源網站:http://blog.longwin.com.tw/2008/11/google-cdn-host-ajax-library-jquery-2008/
jQuery, https://developers.google.com/speed/libraries/devguide#jquery
jQuery UI,
Prototype,
script.aculo.us, MooTools, Dojo 等
來源網站:http://blog.longwin.com.tw/2008/11/google-cdn-host-ajax-library-jquery-2008/
標籤:
jQuery
2014年4月12日
Html5 中加入jquery的方法2
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <title>Title of the document</title> </head> <body> Content of the document...... </body> </html>
Html5 中加入jquery的方法1
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="jquery-1.11.0.min.js"></script> <title>Title of the document</title> </head> <body> Content of the document...... </body> </html>
Html 5 基本語法
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title of the document</title> </head> <body> Content of the document...... </body> </html>
訂閱:
文章 (Atom)