Move an element one place up or down in the dom tree with javascript

后端 未结 4 1230
深忆病人
深忆病人 2021-01-31 03:15

I want a javascript way to move an element one place up or down in the dom tree within a particular known parent using javascript (or jquery is ok), but i want the script to kno

4条回答
  •  情歌与酒
    2021-01-31 03:40

    With jQuery:

    var e = $("#div_2");
    // move up:
    e.prev().insertAfter(e);
    // move down:
    e.next().insertBefore(e);
    

提交回复
热议问题