-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery09-copiarMoverElem.html
121 lines (108 loc) · 2.09 KB
/
jquery09-copiarMoverElem.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Copiar, mover elementos</title>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).on('ready',function(){
$('button').on('click', function(){
// Ejemplos de copiar, mover elementos HTML
// Agrega un elemento al final (el primero: ol:first)
// primero selecciono el elto a mover y luego el destino
// $('ol li:first').appendTo('ol');
/*otro modo de hacer lo mismo
$('ol:first').append($('ol li:first'));
*/
/*método prepend*/
$('ol li:last').prependTo('ol:first');
$('ol:first').prepend($('ol li:last'));
/* insert
$('ol li:first').insertAfter('#e1');
$('#e1').after($('ol li:first'));*/
/*metodo insertBefore
$('ol li:first').insertBefore('#e1');
$('#e1').before($('ol li:first'));
*/
/*clonar elementos: no lo quita de la lista
var clon=$('ol li:first').clone();
$('#e1').before(clon);*/
/*crear nuevos elementos
var nuevoElto=$('<p>Nuevo elemento</p>');
$('#e1').before(nuevoElto);
$('#e2').append(nuevoElto);
*/
//eliminar elementos
$('ol li:last').remove();
});
});
</script>
<style>
html,body
{
background: #000;
color:#FFF;
margin:0;
padding:0;
}
header
{
display:block;
margin:0 auto 50px auto;
width:365px;
}
ol
{
display:block;
width:500px;
margin:0 auto;
}
ol li
{
background: #088A29;
height:30px;
margin:5px auto;
width:100px;
}
button
{
display:block;
margin:0 auto;
}
#e1
{
display:block;
width:500px;
margin:0 auto;
background: #FF0040;
height:150px;
}
div
{
background: #FE2E64;
height: 50px;
display: block;
width:400px;
margin:2px auto;
}
p
{
margin-left: 10px;
}
</style>
</head>
<body>
<header>
<img src="" alt="CF" />
</header>
<ol>
<li>Elemento 1</li>
<li>Elemento 2</li>
<li>Elemento 3</li>
<li>Elemento 4</li>
</ol>
<button id="test">Ejecutar</button>
<div id='e1'><p>Primer div</p></div>
<div id="e2"><p>Segundo div</p></div>
</body>
</html>