1:核心.each(callback),size(),length(),get([index])
1.1 .each(callback)通過它可以遍歷物件、陣列的屬性值並進行處理
$(document).ready(function () )1.2 .size()當前匹配的元素個數});
").size();-->顯示為:2
1.3 .length()同樣是返回元素個數
").length;-->顯示為:2
1.4 .get([index])取得其中乙個匹配的元素,沒有引數時則取得所有匹配的 dom 元素集合。有引數時取得第 index 個位置上的元素。$(this).get(0)與$(this)[0]等價
").get(0);-->獲得dom無素:
結果:i would like to say:
i would like to say:
2.5 .prepend(content) 向每個匹配的元素內部前置內容,引數要插入到目標元素內部前端的內容
i would like to say: $("2.6 .prepend(fn) 引數function(index, html)返回乙個html字串,用於追加到每乙個匹配元素的裡邊。接受兩個引數,index引數為物件在這個集合中的索引值p").prepend("
hello");-->helloi would like to say:
2.7 .prependto(content) 把所有匹配的元素前置到另乙個、指定的元素元素集合中
i would like to say:"foo
">$("
p").prependto("
#foo");
結果:"
重新學習makefile
今天回顧了一下makefile,做下筆記 首先準備幾個簡單的檔案 add.c head.h main.c mul.c sub.c 然後第一版 makefile 然後第二版 gcc c main.c o main.o 然後第三版 makefile 的語法跟shell 很像 第四版 目標 依賴 tab ...
重新學習struts
這就是所謂的一邊工作一邊學習。今天準備把給公司寫個管理頁面,按照之前的路數,寫起來應該挺快,但是不太規範。也就沉下心來學習一下了。第二個學習的是,異常處理。也是在學校的時候,聽老師說過,struts2有提供乙個異常處理機制。平常我們有些異常處理,會在 中寫try catch。public strin...
mysql重新學習筆記
mysql命令複習 desc table 列式展示 alter add 增加列 delete和 truncate table的區別 1.delete dml語言 資料還可以找回來,恢復回來 逐條刪除 刪除速度要慢一些 可以有條件的刪除。delete from 表名 where 條件 2.trunca...