-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery08-attr.html
50 lines (45 loc) · 1.11 KB
/
jquery08-attr.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Attr</title>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).on('ready',function(){
var clase=$('#prueba').attr('class');
console.log(clase);
/* ejemplo 2*/
$('#prueba').attr('class','Clase 2');
console.log($('#prueba').attr('class'));
/*Para quitar atributo: removeAttr
$('#prueba').removeAttr('class');
*/
/*Otro modo de modificar atributos: mediante una función:*/
$('#prueba').attr('class',function(){
var cadena='Clase 3';
return cadena;
});
console.log($('#prueba').attr('class'));
/*Ejemplo práctico del método attr*/
// obsérvese el parámentro de la función (e),
// permite manejar el evento
$('a').on('click',function(e){
var link=$(this).attr('href');
e.preventDefault();
alert('Esta siendo redireccionado');
location.href=link;
});
});
</script>
</head>
<body>
<div id="prueba" class="Clase 1"></div>
<a href="http://www.uclm.es">UCLM</a>
<!--
<form>
<input type=''>
<input type='submit'>
</form>
-->
</body>
</html>