- 11月 28 週一 201623:19
最近在執行的計劃
- 3月 17 週日 201319:04
在Mac OS 儲存目前畫面
最近有處理畫面的需求
上網查了一下hot key 是 commmand + shitf +3 這可以處理目前的全部畫面
但如果要特定的部份可以使用 commmand + shitf +4 按了之後 會出現可以選區域的畫面
只要使用者自己選取好之後 就會自動儲檔
相當方便
- 3月 05 週二 201313:46
程式碼管理工具
Git、Mercurial程式碼管理工具-
SourceTree 目前只要申請帳號
就可以免費使用
官方網站:
http://www.sourcetreeapp.com/
- 2月 24 週日 201323:55
好用服務
一個挺棒的服務 幫你永久收藏並分享所有你喜歡的網頁,你可以依照想去的旅遊景點、彩妝技巧、最愛美食...等主題,分門別類的存在屬於自己的雲端空間,不用擔心網站消失或改變的困擾。
http://www.justaple.com/index.html
- 7月 20 週二 201014:04
JQuery JSON 簡例
記錄一下 用法
很基本的JSON 用法 :重點在於Server 丟給 Client的資料格式
與Client 如何取出值
XXX.htm
<html>
<head>
<script type="text/javascript" src="/script/jquery.js"></script>
</head>
<script>
$(document).ready(function()
{
abcd();
});
function abcd()
{
url = "/php_test/json.php"
$.ajax
({
type: "POST",
url: url ,
data:{},
dataType: "json",
beforeSend: function()
{
},
success: function(data)
{
for(var x in data)
{
alert(data[x].name);
alert(data[x].tel);
alert(data[x].address);
}
},
error: function (XMLHttpRequest, textStatus, errorThrown)
{
}
});
}
</script>
- 7月 02 週五 201015:01
JQuery 控制text (Disabled)
記錄一下用法
用法的關鍵就是 attr 和 disabled 而以 ^^
<html>
<head>
<title>JQuery control the text button </title>
<script src="jquery.js" type="text/javascript"></script>
<script>