- Nov 28 Mon 2016 23:19
-
最近在執行的計劃
- Mar 17 Sun 2013 19:04
-
在Mac OS 儲存目前畫面
最近有處理畫面的需求
上網查了一下hot key 是 commmand + shitf +3 這可以處理目前的全部畫面
但如果要特定的部份可以使用 commmand + shitf +4 按了之後 會出現可以選區域的畫面
只要使用者自己選取好之後 就會自動儲檔
上網查了一下hot key 是 commmand + shitf +3 這可以處理目前的全部畫面
但如果要特定的部份可以使用 commmand + shitf +4 按了之後 會出現可以選區域的畫面
只要使用者自己選取好之後 就會自動儲檔
- Mar 05 Tue 2013 13:46
-
程式碼管理工具
- Feb 24 Sun 2013 23:55
-
好用服務
一個挺棒的服務 幫你永久收藏並分享所有你喜歡的網頁,你可以依照想去的旅遊景點、彩妝技巧、最愛美食...等主題,分門別類的存在屬於自己的雲端空間,不用擔心網站消失或改變的困擾。
http://www.justaple.com/index.html
http://www.justaple.com/index.html
- Jul 20 Tue 2010 14:04
-
JQuery JSON 簡例
- Jul 02 Fri 2010 15:01
-
JQuery 控制text (Disabled)
記錄一下用法
用法的關鍵就是 attr 和 disabled 而以 ^^
<html>
<head>
<title>JQuery control the text button </title>
<script src="jquery.js" type="text/javascript"></script>
用法的關鍵就是 attr 和 disabled 而以 ^^
<html>
<head>
<title>JQuery control the text button </title>
<script src="jquery.js" type="text/javascript"></script>
- Jun 28 Mon 2010 13:38
-
PHP: Explode 用法
- Mar 04 Thu 2010 11:03
-
JQuery-檢查元素是否存在
以下代碼是利用jquery 來檢查某一元素是否存在 記錄一下 ^^
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
if ($("#div_id").length) ////if ($("#div_id")) 也可以
{
alert("do something");
}
});
</script>
</head>
<body>
<div id="div_id"></divs>
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
if ($("#div_id").length) ////if ($("#div_id")) 也可以
{
alert("do something");
}
});
</script>
</head>
<body>
<div id="div_id"></divs>
