最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

juqery 學(xué)習(xí)之五 文檔處理 插入

 更新時間:2011年02月11日 01:59:33   作者:  
這個操作與對指定的元素執(zhí)行appendChild方法,將它們添加到文檔中的情況類似。
append(content)
向每個匹配的元素內(nèi)部追加內(nèi)容。
這個操作與對指定的元素執(zhí)行appendChild方法,將它們添加到文檔中的情況類似。
--------------------------------------------------------------------------------
Append content to the inside of every matched element.
This operation is similar to doing an appendChild to all the specified elements, adding them into the document.
返回值
jQuery
參數(shù)
content (String, Element, jQuery) : C要追加到目標中的內(nèi)容
示例
向所有段落中追加一些HTML標記。
HTML 代碼:
<p>I would like to say: </p>
jQuery 代碼:
$("p").append("<b>Hello</b>");
結(jié)果:
[ <p>I would like to say: <b>Hello</b></p> ]
-
--------------------------------------------------------------------------------------------------------------------------------------------------
appendTo(content)
把所有匹配的元素追加到另一個、指定的元素元素集合中。
實際上,使用這個方法是顛倒了常規(guī)的$(A).append(B)的操作,即不是把B追加到A中,而是把A追加到B中。
--------------------------------------------------------------------------------
Append all of the matched elements to another, specified, set of elements.
This operation is, essentially, the reverse of doing a regular $(A).append(B), in that instead of appending B to A, you're appending A to B.
返回值
jQuery
參數(shù)
content (String) :用于被追加的內(nèi)容
示例
把所有段落追加到ID值為foo的元素中。
HTML 代碼:
<p>I would like to say: </p><div id="foo"></div>
jQuery 代碼:
$("p").appendTo("#foo");
結(jié)果:
<div id="foo"><p>I would like to say: </p></div>
--------------------------------------------------------------------------------------------------------------------------------------------------
prepend(content)
向每個匹配的元素內(nèi)部前置內(nèi)容。
這是向所有匹配元素內(nèi)部的開始處插入內(nèi)容的最佳方式。
--------------------------------------------------------------------------------
Prepend content to the inside of every matched element.
This operation is the best way to insert elements inside, at the beginning, of all matched elements.
返回值
jQuery
參數(shù)
content (String, Element, jQuery) : 要插入到目標元素內(nèi)部前端的內(nèi)容
示例
向所有段落中前置一些HTML標記代碼。
HTML 代碼:
<p>I would like to say: </p>
jQuery 代碼:
$("p").prepend("<b>Hello</b>");
結(jié)果:
[ <b>Hello</b><p>I would like to say: </p> ]
--------------------------------------------------------------------------------
將一個DOM元素前置入所有段落
HTML 代碼:
<p>I would like to say: </p>
<p>I would like to say: </p>
<b class="foo">Hello</b>
<b class="foo">Good Bye</b>
jQuery 代碼:
$("p").prepend( $(".foo")[0] );
結(jié)果:
<p><b class="foo">Hello</b>I would like to say: </p>
<p><b class="foo">Hello</b>I would like to say: </p>
<b class="foo">Hello</b>
<b class="foo">Good Bye</b>
--------------------------------------------------------------------------------
向所有段落中前置一個jQuery對象(類似于一個DOM元素數(shù)組)。
HTML 代碼:
<p>I would like to say: </p><b>Hello</b>
jQuery 代碼:
$("p").prepend( $("b") );
結(jié)果:
<p><b>Hello</b>I would like to say: </p>
--------------------------------------------------------------------------------------------------------------------------------------------------
prependTo(content)
把所有匹配的元素前置到另一個、指定的元素元素集合中。
實際上,使用這個方法是顛倒了常規(guī)的$(A).prepend(B)的操作,即不是把B前置到A中,而是把A前置到B中。
--------------------------------------------------------------------------------
Prepend all of the matched elements to another, specified, set of elements.
This operation is, essentially, the reverse of doing a regular $(A).prepend(B), in that instead of prepending B to A, you're prepending A to B.
返回值
jQuery
參數(shù)
content (String) :用于匹配元素的jQuery表達式
示例
把所有段落追加到ID值為foo的元素中。
HTML 代碼:
<p>I would like to say: </p><div id="foo"></div>
jQuery 代碼:
$("p").prependTo("#foo");
結(jié)果:
<div id="foo"><p>I would like to say: </p></div>
--------------------------------------------------------------------------------------------------------------------------------------------------
after(content)
在每個匹配的元素之后插入內(nèi)容。
--------------------------------------------------------------------------------
Insert content after each of the matched elements.
返回值
jQuery
參數(shù)
content (String, Element, jQuery) : 插入到每個目標后的內(nèi)容
示例
在所有段落之后插入一些HTML標記代碼。
HTML 代碼:
<p>I would like to say: </p>
jQuery 代碼:
$("p").after("<b>Hello</b>");
結(jié)果:
<p>I would like to say: </p><b>Hello</b>
--------------------------------------------------------------------------------
在所有段落之后插入一個DOM元素。
HTML 代碼:
<b id="foo">Hello</b><p>I would like to say: </p>
jQuery 代碼:
$("p").after( $("#foo")[0] );
結(jié)果:
<p>I would like to say: </p><b id="foo">Hello</b>
--------------------------------------------------------------------------------
在所有段落中后插入一個jQuery對象(類似于一個DOM元素數(shù)組)。
HTML 代碼:
<b>Hello</b><p>I would like to say: </p>
jQuery 代碼:
$("p").after( $("b") );
結(jié)果:
<p>I would like to say: </p><b>Hello</b>
--------------------------------------------------------------------------------------------------------------------------------------------------
before(content)
在每個匹配的元素之前插入內(nèi)容。
--------------------------------------------------------------------------------
Insert content before each of the matched elements.
返回值
jQuery
參數(shù)
content (String, Element, jQuery) : 插入到每個目標前的內(nèi)容
示例
在所有段落之前插入一些HTML標記代碼。
HTML 代碼:
<p>I would like to say: </p>
jQuery 代碼:
$("p").before("<b>Hello</b>");
結(jié)果:
[ <b>Hello</b><p>I would like to say: </p> ]
--------------------------------------------------------------------------------
在所有段落之前插入一個元素。
HTML 代碼:
<p>I would like to say: </p><b id="foo">Hello</b>
jQuery 代碼:
$("p").before( $("#foo")[0] );
結(jié)果:
<b id="foo">Hello</b><p>I would like to say: </p>
--------------------------------------------------------------------------------
在所有段落中前插入一個jQuery對象(類似于一個DOM元素數(shù)組)。
HTML 代碼:
<p>I would like to say: </p><b>Hello</b>
jQuery 代碼:
$("p").before( $("b") );
結(jié)果:
<b>Hello</b><p>I would like to say: </p>
--------------------------------------------------------------------------------------------------------------------------------------------------
insertAfter(content)
把所有匹配的元素插入到另一個、指定的元素元素集合的后面。
實際上,使用這個方法是顛倒了常規(guī)的$(A).after(B)的操作,即不是把B插入到A后面,而是把A插入到B后面。
--------------------------------------------------------------------------------
Insert all of the matched elements after another, specified, set of elements.
This operation is, essentially, the reverse of doing a regular $(A).after(B), in that instead of inserting B after A, you're inserting A after B.
返回值
jQuery
參數(shù)
content (String) : 用于匹配元素的jQuery表達式
示例
在所有段落之后插入一個元素。與 $("#foo").after("p")相同
HTML 代碼:
<p>I would like to say: </p><div id="foo">Hello</div>
jQuery 代碼:
$("p").insertAfter("#foo");
結(jié)果:
<div id="foo">Hello</div><p>I would like to say: </p>
-------------------------------------------------------------------------------------------------------------------------------------------------
insertBefore(content)
把所有匹配的元素插入到另一個、指定的元素元素集合的前面。
實際上,使用這個方法是顛倒了常規(guī)的$(A).before(B)的操作,即不是把B插入到A前面,而是把A插入到B前面。
--------------------------------------------------------------------------------
Insert all of the matched elements before another, specified, set of elements.
This operation is, essentially, the reverse of doing a regular $(A).before(B), in that instead of inserting B before A, you're inserting A before B.
返回值
jQuery
參數(shù)
content (String) : 用于匹配元素的jQuery表達式
示例
在所有段落之前插入一個元素。與 $("#foo").before("p")相同。
HTML 代碼:
<div id="foo">Hello</div><p>I would like to say: </p>
jQuery 代碼:
$("p").insertBefore("#foo");
結(jié)果:
<p>I would like to say: </p><div id="foo">Hello</div>

相關(guān)文章

  • jquery復(fù)選框checkbox實現(xiàn)刪除前判斷

    jquery復(fù)選框checkbox實現(xiàn)刪除前判斷

    頁面有很多數(shù)據(jù),可以刪除一條或多條,刪除前判斷是否選中至少一條,否則提示,具體示例如下,需要的朋友可以參考下
    2014-04-04
  • jQuery實時顯示鼠標指針位置和鍵盤ASCII碼

    jQuery實時顯示鼠標指針位置和鍵盤ASCII碼

    本文通過jquery技術(shù)實現(xiàn)鼠標指針位置和鍵盤ASCII碼,非常具有參考借鑒價值,感興趣的朋友一起學(xué)習(xí)吧
    2016-03-03
  • jQuery實現(xiàn)全選、反選和不選功能的方法詳解

    jQuery實現(xiàn)全選、反選和不選功能的方法詳解

    這篇文章主要介紹了jQuery實現(xiàn)全選、反選和不選功能的方法,結(jié)合實例形式詳細分析了jQuery全選、反選以及不選功能的相關(guān)原理、實現(xiàn)方法及操作注意事項,需要的朋友可以參考下
    2019-12-12
  • jquery select(列表)的操作(取值/賦值)

    jquery select(列表)的操作(取值/賦值)

    jquery對<select>的操作比較麻煩,我把常用的收集如下
    2011-03-03
  • jQuery on()方法示例及jquery on()方法的優(yōu)點

    jQuery on()方法示例及jquery on()方法的優(yōu)點

    使用jquery on()方法綁定事件是官方推薦的一種方法,接下來跟著小編來學(xué)習(xí)jquery on()方法,小伙伴快來一起學(xué)習(xí)吧
    2015-08-08
  • 基于jquery實現(xiàn)多選下拉列表

    基于jquery實現(xiàn)多選下拉列表

    這篇文章主要為大家詳細介紹了基于jquery實現(xiàn)多選下拉列表,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-08-08
  • 淺談jquery高級方法描述與應(yīng)用

    淺談jquery高級方法描述與應(yīng)用

    下面小編就為大家?guī)硪黄獪\談jquery高級方法描述與應(yīng)用。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-10-10
  • 基于jQuery的判斷iPad、iPhone、Android是橫屏還是豎屏的代碼

    基于jQuery的判斷iPad、iPhone、Android是橫屏還是豎屏的代碼

    在ipad、iphone網(wǎng)頁開發(fā)中,我們很可能需要判斷是橫屏或者豎屏。下面就來介紹如何用 jQuery 判斷iPad、iPhone、Android是橫屏還是豎屏的方法
    2014-05-05
  • jQuery中setTimeout的幾種使用方法小結(jié)

    jQuery中setTimeout的幾種使用方法小結(jié)

    jQuery 中 setTimeout/setInterval 不能像在原生態(tài) javascript 中那樣使用, 否則會報錯.
    2013-04-04
  • jquery 使用簡明教程

    jquery 使用簡明教程

    jQuery是目前使用最廣泛的javascript函數(shù)庫。據(jù)統(tǒng)計,全世界排名前100萬的網(wǎng)站,有46%使用jQuery,遠遠超過其他庫。微軟公司甚至把jQuery作為他們的官方庫。對于網(wǎng)頁開發(fā)者來說,學(xué)會jQuery是必要的。因為它讓你了解業(yè)界最通用的技術(shù),為將來學(xué)習(xí)更高級的庫打下基礎(chǔ),并且確實可以很輕松地做出許多復(fù)雜的效果
    2014-03-03

最新評論

玉溪市| 冕宁县| 道孚县| 利津县| 光山县| 从江县| 平定县| 昌黎县| 鹤庆县| 贵定县| 利津县| 嘉定区| 芜湖县| 清徐县| 彩票| 中宁县| 托克逊县| 措勤县| 久治县| 盐边县| 沂源县| 乐都县| 谷城县| 邳州市| 迁西县| 东平县| 兴安盟| 施秉县| 多伦县| 县级市| 大冶市| 新闻| 博白县| 沭阳县| 中西区| 罗江县| 城步| 阿拉善左旗| 万荣县| 揭阳市| 湘西|