Reference
- [1]static method in javascript
- http://stackoverflow.com/questions/1535631/static-variables-in-javascript
- [2]Public / Private variable and method
- http://phrogz.net/JS/classes/OOPinJS.html
JerryCheng 發表在 痞客邦 留言(0) 人氣()
JerryCheng 發表在 痞客邦 留言(0) 人氣()
idList = [];
$('.jobs').each(function(){
if($(this).attr("checked"))
{
idList.push($(this).attr('jobid'));
}
});
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在Javascript中 , 我們可以藉由取得html element並進行control ,
當然 , checkbox 也不會是例外:
JerryCheng 發表在 痞客邦 留言(9) 人氣()
在Javascript中 , 我們可以去偵測一些事件是否發生 ,
像mouse的動作 , 或者是keyboard的動作 ,
JerryCheng 發表在 痞客邦 留言(0) 人氣()
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在網頁中 , 若我們想在使用者在按下Button時而觸發event , 基本上的做法有兩種:
1. 在input 的tag中註明click後所觸發的function.
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在regular expression中 , 我們可以藉由g modifier來決定是否進行global match ,
(也就是match所有符合的部分 , 而非只停留在第一個)
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在Javascript中 , 我們若想在某一個event 被trigger時 , 讓某一個function也同時進行處理 ,
我們可以藉由Jquery所提供的bind() method:
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在Javascript的Array object中 , 提供了一個sort method來幫我們對Array進行sort的動作:
jsonMgmt.sort(function(a , b)
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在尋找字串時 , 我們有時只會知道String中的片段資料 ,
此時我們就需要去比對該String中是否含有我們想要的substring ,
JerryCheng 發表在 痞客邦 留言(1) 人氣()
在Javascript中 , 我們若要使用Array , 必需先進行宣告:
var jsonMgmt = new Array();
JerryCheng 發表在 痞客邦 留言(0) 人氣()
除了得到想要的html element外 , 我們常常會想要更進ㄧ步的得到該element中
所描述的文字部分 ,
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在Javascript中 , 我們常會去對表格選取我們想要的元素 ,
而JQuery提供了我們ㄧ個方便的方法來進行這個動作:
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在Html中, table是由<table>這個tag所定義 ,
A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag).
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在jquery中 , method通常除了可以用來取得element的值外 , 有些還可以設定element的值,
以 .text method來講 , 若使用:
JerryCheng 發表在 痞客邦 留言(0) 人氣()
Ajax , 其實就是 Asynchronous JavaScript and XML 的縮寫,
就是利用Javascript與XML的技巧來達到動態網頁中的非同步運作 ,
JerryCheng 發表在 痞客邦 留言(0) 人氣()
在javaScript中 , 若我們想讓使用者輸入value到變數中 ,
我們可以使用Prompt box ,
JerryCheng 發表在 痞客邦 留言(0) 人氣()